Instance Methodswift-bson 0.3.1BSONEncoding->BSONABI
move
BSON.DocumentEncoder.swift:19consuming func move() -> BSON.Output
consuming func move() -> BSON.Output
s7BSONABI4BSONO12BSONEncodingE15DocumentEncoderV4moveAC6OutputVyF
What are these?3C4D
where CodingKey:RawRepresentable, CodingKey.RawValue == String
import BSONEncoding
import BSONABI
Models the BSON type system and the binary interface of the BSON serialization format.
@frozen struct DocumentEncoder<CodingKey> where CodingKey : RawRepresentable, CodingKey.RawValue == String
@frozen enum BSON
The namespace for all BSON types.
@frozen struct Output
protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
@frozen struct String
A Unicode string value that is a collection of characters.
static var frame: BSON.DocumentFrame { get }
subscript(key: CodingKey) -> BSON.FieldEncoder { get set }
subscript<Value>(key: CodingKey) -> Value? where Value : BSONEncodable { get set }
Appends the given key-value pair to this document builder, encoding the value as the field value using its BSONEncodable
implementation.
subscript(with key: some RawRepresentable<String>) -> BSON.FieldEncoder { get set }