Instance Methodswift-bson 0.3.1BSONEncoding->BSONABI
encode(to:)
BSON.BinaryView (ext).swift:4func encode(to field: inout BSON.FieldEncoder)
func encode(to field: inout BSON.FieldEncoder)
s7BSONABI4BSONO10BinaryViewV12BSONEncodingE6encode2toyAC12FieldEncoderVz_tF
What are these?88VWO
where Bytes:RandomAccessCollection, Bytes.Element == UInt8
import BSONEncoding
import BSONABI
Models the BSON type system and the binary interface of the BSON serialization format.
@frozen struct BinaryView<Bytes> where Bytes : RandomAccessCollection, Bytes.Element == UInt8
A BSON binary array.
@frozen enum BSON
The namespace for all BSON types.
@frozen struct FieldEncoder
A type that can serialize any BSON container element.
protocol RandomAccessCollection<Element> : BidirectionalCollection where Self.Indices : RandomAccessCollection, Self.SubSequence : RandomAccessCollection
A collection that supports efficient random-access index traversal.
@frozen struct UInt8
An 8-bit unsigned integer value type.