pub struct FullBucketInfo {
pub info: BucketInfo,
pub settings: BucketSettings,
pub entries: Vec<EntryInfo>,
}Expand description
Full bucket information
Fields§
§info: BucketInfoBucket information
settings: BucketSettingsBucket settings
entries: Vec<EntryInfo>Entries in bucket
Trait Implementations§
Source§impl Clone for FullBucketInfo
impl Clone for FullBucketInfo
Source§fn clone(&self) -> FullBucketInfo
fn clone(&self) -> FullBucketInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 FullBucketInfo
impl Debug for FullBucketInfo
Source§impl Default for FullBucketInfo
impl Default for FullBucketInfo
Source§fn default() -> FullBucketInfo
fn default() -> FullBucketInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FullBucketInfo
impl<'de> Deserialize<'de> for FullBucketInfo
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 FullBucketInfo
impl PartialEq for FullBucketInfo
Source§impl Serialize for FullBucketInfo
impl Serialize for FullBucketInfo
impl StructuralPartialEq for FullBucketInfo
Auto Trait Implementations§
impl Freeze for FullBucketInfo
impl RefUnwindSafe for FullBucketInfo
impl Send for FullBucketInfo
impl Sync for FullBucketInfo
impl Unpin for FullBucketInfo
impl UnwindSafe for FullBucketInfo
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