pub struct PivotCacheRecords {
pub xmlns: String,
pub xmlns_r: String,
pub count: Option<u32>,
pub records: Vec<CacheRecord>,
}Expand description
Root element for pivot cache records.
Fields§
§xmlns: String§xmlns_r: String§count: Option<u32>§records: Vec<CacheRecord>Trait Implementations§
Source§impl Clone for PivotCacheRecords
impl Clone for PivotCacheRecords
Source§fn clone(&self) -> PivotCacheRecords
fn clone(&self) -> PivotCacheRecords
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 PivotCacheRecords
impl Debug for PivotCacheRecords
Source§impl<'de> Deserialize<'de> for PivotCacheRecords
impl<'de> Deserialize<'de> for PivotCacheRecords
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 PivotCacheRecords
impl PartialEq for PivotCacheRecords
Source§impl Serialize for PivotCacheRecords
impl Serialize for PivotCacheRecords
impl StructuralPartialEq for PivotCacheRecords
Auto Trait Implementations§
impl Freeze for PivotCacheRecords
impl RefUnwindSafe for PivotCacheRecords
impl Send for PivotCacheRecords
impl Sync for PivotCacheRecords
impl Unpin for PivotCacheRecords
impl UnwindSafe for PivotCacheRecords
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