pub struct AnnotationFilePath {
pub file_id: String,
pub index: i64,
pub type_: String,
}Expand description
A path to a file.
Fields§
§file_id: StringThe ID of the file.
index: i64The index of the file in the list of files.
type_: StringThe type of the file path. Always file_path.
Trait Implementations§
Source§impl Clone for AnnotationFilePath
impl Clone for AnnotationFilePath
Source§fn clone(&self) -> AnnotationFilePath
fn clone(&self) -> AnnotationFilePath
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 AnnotationFilePath
impl Debug for AnnotationFilePath
Source§impl<'de> Deserialize<'de> for AnnotationFilePath
impl<'de> Deserialize<'de> for AnnotationFilePath
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 AnnotationFilePath
impl RefUnwindSafe for AnnotationFilePath
impl Send for AnnotationFilePath
impl Sync for AnnotationFilePath
impl Unpin for AnnotationFilePath
impl UnsafeUnpin for AnnotationFilePath
impl UnwindSafe for AnnotationFilePath
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