Struct cloud_storage::bucket::Logging[][src]

pub struct Logging {
    pub log_bucket: String,
    pub log_object_prefix: String,
}

Contains information of where and how access logs to this bucket are maintained.

Fields

log_bucket: String

The destination bucket where the current bucket’s logs should be placed.

log_object_prefix: String

A prefix for log object names. The default prefix is the bucket name.

Trait Implementations

impl Debug for Logging[src]

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

impl PartialEq<Logging> for Logging[src]

impl Serialize for Logging[src]

impl StructuralPartialEq for Logging[src]

Auto Trait Implementations

impl RefUnwindSafe for Logging

impl Send for Logging

impl Sync for Logging

impl Unpin for Logging

impl UnwindSafe for Logging

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> Instrument 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.