pub enum MangleCacheEntry {
StringValue(String),
BoolValue(bool),
}Variants§
Trait Implementations§
Source§impl Clone for MangleCacheEntry
impl Clone for MangleCacheEntry
Source§fn clone(&self) -> MangleCacheEntry
fn clone(&self) -> MangleCacheEntry
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 MangleCacheEntry
impl Debug for MangleCacheEntry
Source§impl Encode for MangleCacheEntry
impl Encode for MangleCacheEntry
fn encode_into(&self, buf: &mut Vec<u8>)
fn should_encode(&self) -> bool
Source§impl FromAnyValue for MangleCacheEntry
impl FromAnyValue for MangleCacheEntry
Auto Trait Implementations§
impl Freeze for MangleCacheEntry
impl RefUnwindSafe for MangleCacheEntry
impl Send for MangleCacheEntry
impl Sync for MangleCacheEntry
impl Unpin for MangleCacheEntry
impl UnsafeUnpin for MangleCacheEntry
impl UnwindSafe for MangleCacheEntry
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