pub struct ExternalFile {
pub id: u32,
pub file_type: ExternalFileType,
pub name: String,
}Expand description
A reference to an external file.
Fields§
§id: u32§file_type: ExternalFileType§name: StringTrait Implementations§
Source§impl Clone for ExternalFile
impl Clone for ExternalFile
Source§fn clone(&self) -> ExternalFile
fn clone(&self) -> ExternalFile
Returns a duplicate 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 ExternalFile
impl Debug for ExternalFile
Source§impl PartialEq for ExternalFile
impl PartialEq for ExternalFile
impl StructuralPartialEq for ExternalFile
Auto Trait Implementations§
impl Freeze for ExternalFile
impl RefUnwindSafe for ExternalFile
impl Send for ExternalFile
impl Sync for ExternalFile
impl Unpin for ExternalFile
impl UnsafeUnpin for ExternalFile
impl UnwindSafe for ExternalFile
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