pub struct FileCitationBody {
pub type: String,
pub file_id: String,
pub index: i64,
}
Expand description
A citation to a file.
Fields§
§type: String
The type of the file citation.
file_id: String
The ID of the file.
index: i64
The index of the file in the list of files.
Trait Implementations§
Source§impl Clone for FileCitationBody
impl Clone for FileCitationBody
Source§fn clone(&self) -> FileCitationBody
fn clone(&self) -> FileCitationBody
Returns a copy of the value. Read more
1.0.0 · 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 FileCitationBody
impl Debug for FileCitationBody
Source§impl Default for FileCitationBody
impl Default for FileCitationBody
Source§fn default() -> FileCitationBody
fn default() -> FileCitationBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileCitationBody
impl RefUnwindSafe for FileCitationBody
impl Send for FileCitationBody
impl Sync for FileCitationBody
impl Unpin for FileCitationBody
impl UnwindSafe for FileCitationBody
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