[][src]Struct aw_models::Bucket

pub struct Bucket {
    pub bid: Option<i64>,
    pub id: String,
    pub _type: String,
    pub client: String,
    pub hostname: String,
    pub created: Option<DateTime<Utc>>,
    pub data: Map<String, Value>,
    pub metadata: BucketMetadata,
    pub events: Option<Vec<Event>>,
    pub last_updated: Option<DateTime<Utc>>,
}

Fields

bid: Option<i64>id: String_type: Stringclient: Stringhostname: Stringcreated: Option<DateTime<Utc>>data: Map<String, Value>metadata: BucketMetadataevents: Option<Vec<Event>>last_updated: Option<DateTime<Utc>>

Trait Implementations

impl Clone for Bucket[src]

impl Debug for Bucket[src]

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

impl JsonSchema for Bucket[src]

impl Serialize for Bucket[src]

Auto Trait Implementations

impl RefUnwindSafe for Bucket

impl Send for Bucket

impl Sync for Bucket

impl Unpin for Bucket

impl UnwindSafe for Bucket

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: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.