pub struct CacheField {
pub name: String,
pub num_fmt_id: Option<u32>,
pub shared_items: Option<SharedItems>,
}Expand description
Individual cache field definition.
Fields§
§name: String§num_fmt_id: Option<u32>Trait Implementations§
Source§impl Clone for CacheField
impl Clone for CacheField
Source§fn clone(&self) -> CacheField
fn clone(&self) -> CacheField
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 CacheField
impl Debug for CacheField
Source§impl<'de> Deserialize<'de> for CacheField
impl<'de> Deserialize<'de> for CacheField
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 CacheField
impl PartialEq for CacheField
Source§impl Serialize for CacheField
impl Serialize for CacheField
impl StructuralPartialEq for CacheField
Auto Trait Implementations§
impl Freeze for CacheField
impl RefUnwindSafe for CacheField
impl Send for CacheField
impl Sync for CacheField
impl Unpin for CacheField
impl UnwindSafe for CacheField
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