Trait nitroglycerin::put::Put[][src]

pub trait Put<D>: Table {
    type Builder;
    fn put(self, client: D) -> Self::Builder;
}
Expand description

Trait that declares a type can be built into a put item request

Associated Types

The builder type that performs the put item request

Required methods

Create the put item builder

Implementors