pub struct MemoryImportEntry {
pub content: String,
pub type: Option<String>,
pub tags: Option<Vec<String>>,
pub created_at: Option<String>,
}Expand description
MemoryImportEntry model.
Fields§
§content: String§type: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl Clone for MemoryImportEntry
impl Clone for MemoryImportEntry
Source§fn clone(&self) -> MemoryImportEntry
fn clone(&self) -> MemoryImportEntry
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 MemoryImportEntry
impl Debug for MemoryImportEntry
Source§impl Default for MemoryImportEntry
impl Default for MemoryImportEntry
Source§fn default() -> MemoryImportEntry
fn default() -> MemoryImportEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemoryImportEntry
impl<'de> Deserialize<'de> for MemoryImportEntry
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 MemoryImportEntry
impl PartialEq for MemoryImportEntry
Source§impl Serialize for MemoryImportEntry
impl Serialize for MemoryImportEntry
impl StructuralPartialEq for MemoryImportEntry
Auto Trait Implementations§
impl Freeze for MemoryImportEntry
impl RefUnwindSafe for MemoryImportEntry
impl Send for MemoryImportEntry
impl Sync for MemoryImportEntry
impl Unpin for MemoryImportEntry
impl UnsafeUnpin for MemoryImportEntry
impl UnwindSafe for MemoryImportEntry
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