pub struct S3LimitCheck {
pub bucket: String,
pub accesskey: String,
pub over_limit: i64,
pub detail: Option<Value>,
}Expand description
Response returned by the S3 limit-check endpoint.
Fields§
§bucket: StringBucket name echoed by the service.
accesskey: StringAccess key echoed by the service.
over_limit: i64Whether the queue is over limit.
detail: Option<Value>Backend-specific detail string.
Trait Implementations§
Source§impl Clone for S3LimitCheck
impl Clone for S3LimitCheck
Source§fn clone(&self) -> S3LimitCheck
fn clone(&self) -> S3LimitCheck
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for S3LimitCheck
impl Debug for S3LimitCheck
Source§impl<'de> Deserialize<'de> for S3LimitCheck
impl<'de> Deserialize<'de> for S3LimitCheck
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for S3LimitCheck
impl PartialEq for S3LimitCheck
Source§fn eq(&self, other: &S3LimitCheck) -> bool
fn eq(&self, other: &S3LimitCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for S3LimitCheck
impl Serialize for S3LimitCheck
impl StructuralPartialEq for S3LimitCheck
Auto Trait Implementations§
impl Freeze for S3LimitCheck
impl RefUnwindSafe for S3LimitCheck
impl Send for S3LimitCheck
impl Sync for S3LimitCheck
impl Unpin for S3LimitCheck
impl UnsafeUnpin for S3LimitCheck
impl UnwindSafe for S3LimitCheck
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more