Trait IsUpsertSupport

Source
pub trait IsUpsertSupport {
    type O;

    // Required method
    fn with_is_upsert(self, is_upsert: bool) -> Self::O;
}

Required Associated Types§

Source

type O

Required Methods§

Source

fn with_is_upsert(self, is_upsert: bool) -> Self::O

Implementors§

Source§

impl<'a, 'b, C, D, PartitionKeysSet> IsUpsertSupport for CreateDocumentBuilder<'a, 'b, C, D, PartitionKeysSet>
where PartitionKeysSet: ToAssign, C: CosmosClient, D: DatabaseClient<C>,

Source§

type O = CreateDocumentBuilder<'a, 'b, C, D, PartitionKeysSet>