pub enum MachineFilter {
Device,
Bios,
Mechanical,
Modified,
Clones,
}
Expand description
Represents different filter criteria for filtering machines.
The MachineFilter
enum defines various criteria that can be used to filter
machines based on specific attributes, such as whether the machine is a device,
BIOS, mechanical, modified, or a clone.
§Variants
Device
- Filters machines that are marked as devices.Bios
- Filters machines that are identified as BIOS.Mechanical
- Filters machines that are categorized as mechanical.Modified
- Filters machines that are considered modified based on their description, manufacturer validity, or player information.Clones
- Filters machines that are identified as clones of other machines.
Variants§
Device
Filters machines that are marked as devices.
Bios
Filters machines that are identified as BIOS.
Mechanical
Filters machines that are categorized as mechanical.
Modified
Filters machines that are considered modified based on their description,
Clones
Filters machines that are identified as clones of other machines.
Auto Trait Implementations§
impl Freeze for MachineFilter
impl RefUnwindSafe for MachineFilter
impl Send for MachineFilter
impl Sync for MachineFilter
impl Unpin for MachineFilter
impl UnwindSafe for MachineFilter
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