pub struct BlockApplication {
pub application_id: u32,
pub data: Vec<u8>,
}Fields§
§application_id: u32Registered application ID. (Visit the registration page to register an ID with FLAC.)
data: Vec<u8>Application data (n must be a multiple of 8)
Trait Implementations§
Source§impl Debug for BlockApplication
impl Debug for BlockApplication
Source§impl Decode for BlockApplication
impl Decode for BlockApplication
Auto Trait Implementations§
impl Freeze for BlockApplication
impl RefUnwindSafe for BlockApplication
impl Send for BlockApplication
impl Sync for BlockApplication
impl Unpin for BlockApplication
impl UnwindSafe for BlockApplication
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more