[][src]Struct turingfeeds_helpers::FieldBuilder

pub struct FieldBuilder { /* fields omitted */ }

Methods

impl FieldBuilder[src]

pub async fn new() -> Self[src]

pub async fn db<'_, '_, '_>(&'_ mut self, db_name: &'_ str) -> &'_ mut Self[src]

pub async fn document<'_, '_, '_>(
    &'_ mut self,
    document_name: &'_ str
) -> &'_ mut Self
[src]

pub async fn field<'_, '_, '_>(
    &'_ mut self,
    field_name: &'_ str
) -> &'_ mut Self
[src]

pub async fn insert<'de, '_, T>(&'_ self, values: T) -> Result<DbOps> where
    T: Debug + Sync + Send + Serialize + Deserialize<'de>, 
[src]

pub async fn get<'_>(&'_ self) -> Result<DbOps>[src]

pub async fn update<'de, '_, T>(&'_ self, values: T) -> Result<DbOps> where
    T: Debug + Sync + Send + Serialize + Deserialize<'de>, 
[src]

pub async fn drop<'_>(&'_ self) -> Result<DbOps>[src]

Trait Implementations

impl Debug for FieldBuilder[src]

impl<'de> Deserialize<'de> for FieldBuilder[src]

impl Eq for FieldBuilder[src]

impl PartialEq<FieldBuilder> for FieldBuilder[src]

impl PartialOrd<FieldBuilder> for FieldBuilder[src]

impl Serialize for FieldBuilder[src]

impl StructuralEq for FieldBuilder[src]

impl StructuralPartialEq for FieldBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.