pub struct IRMemory {
pub node_type: &'static str,
pub source_line: u32,
pub source_column: u32,
pub name: String,
pub store: String,
pub backend: String,
pub retrieval: String,
pub decay: String,
}Fields§
§node_type: &'static str§source_line: u32§source_column: u32§name: String§store: String§backend: String§retrieval: String§decay: StringTrait Implementations§
Source§impl Serialize for IRMemory
impl Serialize for IRMemory
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for IRMemory
impl RefUnwindSafe for IRMemory
impl Send for IRMemory
impl Sync for IRMemory
impl Unpin for IRMemory
impl UnsafeUnpin for IRMemory
impl UnwindSafe for IRMemory
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