#[non_exhaustive]pub enum AckCode {
Ok,
UnknownDomainIdentifier,
Reserved(u8),
}Expand description
AckCode values (Table 74), the Host’s response to a FileSystemOffer.
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.
Ok
0x01 — OK, the application environment is supported by the Host.
UnknownDomainIdentifier
0x02 — Unknown DomainIdentifier, not supported by the Host.
Reserved(u8)
Reserved (0x00, 0x03–0xFF).
Implementations§
Trait Implementations§
impl Copy for AckCode
impl Eq for AckCode
impl StructuralPartialEq for AckCode
Auto Trait Implementations§
impl Freeze for AckCode
impl RefUnwindSafe for AckCode
impl Send for AckCode
impl Sync for AckCode
impl Unpin for AckCode
impl UnsafeUnpin for AckCode
impl UnwindSafe for AckCode
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