pub struct MachineDescriptor {
pub module_path: &'static str,
pub rust_type_path: &'static str,
}Expand description
Rust-facing identity for a machine family.
Fields§
§module_path: &'static strmodule_path!() for the source module that owns the machine.
rust_type_path: &'static strFully qualified Rust type path for the machine family.
Trait Implementations§
Source§impl Clone for MachineDescriptor
impl Clone for MachineDescriptor
Source§fn clone(&self) -> MachineDescriptor
fn clone(&self) -> MachineDescriptor
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 MachineDescriptor
impl Debug for MachineDescriptor
Source§impl PartialEq for MachineDescriptor
impl PartialEq for MachineDescriptor
impl Copy for MachineDescriptor
impl Eq for MachineDescriptor
impl StructuralPartialEq for MachineDescriptor
Auto Trait Implementations§
impl Freeze for MachineDescriptor
impl RefUnwindSafe for MachineDescriptor
impl Send for MachineDescriptor
impl Sync for MachineDescriptor
impl Unpin for MachineDescriptor
impl UnsafeUnpin for MachineDescriptor
impl UnwindSafe for MachineDescriptor
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