pub struct MemoryCitation {
pub entries: Vec<MemoryCitationEntry>,
pub thread_ids: Vec<String>,
}Expand description
MemoryCitation
JSON schema
{
"type": "object",
"required": [
"entries",
"threadIds"
],
"properties": {
"entries": {
"type": "array",
"items": {
"$ref": "#/definitions/MemoryCitationEntry"
}
},
"threadIds": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§entries: Vec<MemoryCitationEntry>§thread_ids: Vec<String>Trait Implementations§
Source§impl Clone for MemoryCitation
impl Clone for MemoryCitation
Source§fn clone(&self) -> MemoryCitation
fn clone(&self) -> MemoryCitation
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 MemoryCitation
impl Debug for MemoryCitation
Source§impl<'de> Deserialize<'de> for MemoryCitation
impl<'de> Deserialize<'de> for MemoryCitation
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 MemoryCitation
impl RefUnwindSafe for MemoryCitation
impl Send for MemoryCitation
impl Sync for MemoryCitation
impl Unpin for MemoryCitation
impl UnsafeUnpin for MemoryCitation
impl UnwindSafe for MemoryCitation
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