Trait UserDefinedFunctionBodySupport

Source
pub trait UserDefinedFunctionBodySupport<'a> {
    type O;

    // Required method
    fn with_body(self, body: &'a str) -> Self::O;
}

Required Associated Types§

Source

type O

Required Methods§

Source

fn with_body(self, body: &'a str) -> Self::O

Implementors§

Source§

impl<'a, 'b, C, D, COLL> UserDefinedFunctionBodySupport<'b> for CreateOrReplaceUserDefinedFunctionBuilder<'a, 'b, C, D, COLL, No>
where C: CosmosClient, D: DatabaseClient<C>, COLL: CollectionClient<C, D>,