pub struct Memory {
pub name: Option<String>,
pub memory_id: Option<String>,
pub type: Option<String>,
pub additional_info: Option<AdditionalInfo>,
pub user: Option<String>,
pub updated_time: Option<String>,
pub create_time: Option<String>,
}Fields§
§name: Option<String>§memory_id: Option<String>§type: Option<String>§additional_info: Option<AdditionalInfo>Additional information query.
user: Option<String>The username of the user.
updated_time: Option<String>The updated time.
create_time: Option<String>The create time.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Memory
impl<'de> Deserialize<'de> for Memory
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
impl StructuralPartialEq for Memory
Auto Trait Implementations§
impl Freeze for Memory
impl RefUnwindSafe for Memory
impl Send for Memory
impl Sync for Memory
impl Unpin for Memory
impl UnsafeUnpin for Memory
impl UnwindSafe for Memory
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