#[non_exhaustive]pub struct OpenFileDetails {
pub command: String,
pub user: String,
pub file_type: String,
pub file_path: String,
/* private fields */
}Expand description
Open file Information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.command: StringOpened file command.
user: StringOpened file user.
file_type: StringOpened file file type.
file_path: StringOpened file file path.
Implementations§
Trait Implementations§
Source§impl Clone for OpenFileDetails
impl Clone for OpenFileDetails
Source§fn clone(&self) -> OpenFileDetails
fn clone(&self) -> OpenFileDetails
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 OpenFileDetails
impl Debug for OpenFileDetails
Source§impl Default for OpenFileDetails
impl Default for OpenFileDetails
Source§fn default() -> OpenFileDetails
fn default() -> OpenFileDetails
Returns the “default value” for a type. Read more
Source§impl Message for OpenFileDetails
impl Message for OpenFileDetails
Source§impl PartialEq for OpenFileDetails
impl PartialEq for OpenFileDetails
impl StructuralPartialEq for OpenFileDetails
Auto Trait Implementations§
impl Freeze for OpenFileDetails
impl RefUnwindSafe for OpenFileDetails
impl Send for OpenFileDetails
impl Sync for OpenFileDetails
impl Unpin for OpenFileDetails
impl UnsafeUnpin for OpenFileDetails
impl UnwindSafe for OpenFileDetails
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