pub struct MemoryCitationEntry {
pub line_end: u32,
pub line_start: u32,
pub note: String,
pub path: String,
}Expand description
MemoryCitationEntry
JSON schema
{
"type": "object",
"required": [
"lineEnd",
"lineStart",
"note",
"path"
],
"properties": {
"lineEnd": {
"type": "integer",
"format": "uint32",
"minimum": 0.0
},
"lineStart": {
"type": "integer",
"format": "uint32",
"minimum": 0.0
},
"note": {
"type": "string"
},
"path": {
"type": "string"
}
}
}Fields§
§line_end: u32§line_start: u32§note: String§path: StringTrait Implementations§
Source§impl Clone for MemoryCitationEntry
impl Clone for MemoryCitationEntry
Source§fn clone(&self) -> MemoryCitationEntry
fn clone(&self) -> MemoryCitationEntry
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 MemoryCitationEntry
impl Debug for MemoryCitationEntry
Source§impl<'de> Deserialize<'de> for MemoryCitationEntry
impl<'de> Deserialize<'de> for MemoryCitationEntry
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 MemoryCitationEntry
impl RefUnwindSafe for MemoryCitationEntry
impl Send for MemoryCitationEntry
impl Sync for MemoryCitationEntry
impl Unpin for MemoryCitationEntry
impl UnsafeUnpin for MemoryCitationEntry
impl UnwindSafe for MemoryCitationEntry
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