#[non_exhaustive]#[repr(i32)]pub enum _SUITE_TYPE {
Show 18 variants
SmallBusiness = 0,
Enterprise = 1,
BackOffice = 2,
CommunicationServer = 3,
TerminalServer = 4,
SmallBusinessRestricted = 5,
EmbeddedNT = 6,
DataCenter = 7,
SingleUserTS = 8,
Personal = 9,
Blade = 10,
EmbeddedRestricted = 11,
SecurityAppliance = 12,
StorageServer = 13,
ComputeServer = 14,
WHServer = 15,
PhoneNT = 16,
MaxSuiteType = 17,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SmallBusiness = 0
Enterprise = 1
BackOffice = 2
CommunicationServer = 3
TerminalServer = 4
SmallBusinessRestricted = 5
EmbeddedNT = 6
DataCenter = 7
SingleUserTS = 8
Personal = 9
Blade = 10
EmbeddedRestricted = 11
SecurityAppliance = 12
StorageServer = 13
ComputeServer = 14
WHServer = 15
PhoneNT = 16
MaxSuiteType = 17
Trait Implementations§
Source§impl Clone for _SUITE_TYPE
impl Clone for _SUITE_TYPE
Source§fn clone(&self) -> _SUITE_TYPE
fn clone(&self) -> _SUITE_TYPE
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 _SUITE_TYPE
impl Debug for _SUITE_TYPE
Source§impl Hash for _SUITE_TYPE
impl Hash for _SUITE_TYPE
Source§impl PartialEq for _SUITE_TYPE
impl PartialEq for _SUITE_TYPE
impl Copy for _SUITE_TYPE
impl Eq for _SUITE_TYPE
impl StructuralPartialEq for _SUITE_TYPE
Auto Trait Implementations§
impl Freeze for _SUITE_TYPE
impl RefUnwindSafe for _SUITE_TYPE
impl Send for _SUITE_TYPE
impl Sync for _SUITE_TYPE
impl Unpin for _SUITE_TYPE
impl UnwindSafe for _SUITE_TYPE
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