pub struct MemoryDirective {
pub id: i64,
pub key: String,
pub body: String,
pub scope: String,
pub source: String,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§key: String§body: String§scope: String§source: String§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for MemoryDirective
impl Clone for MemoryDirective
Source§fn clone(&self) -> MemoryDirective
fn clone(&self) -> MemoryDirective
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 MemoryDirective
impl Debug for MemoryDirective
Source§impl<'de> Deserialize<'de> for MemoryDirective
impl<'de> Deserialize<'de> for MemoryDirective
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
Auto Trait Implementations§
impl Freeze for MemoryDirective
impl RefUnwindSafe for MemoryDirective
impl Send for MemoryDirective
impl Sync for MemoryDirective
impl Unpin for MemoryDirective
impl UnsafeUnpin for MemoryDirective
impl UnwindSafe for MemoryDirective
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