[][src]Struct xaynet_core::mask::MaskConfigBuffer

pub struct MaskConfigBuffer<T> { /* fields omitted */ }

A buffer for serialized masking configurations.

Implementations

impl<T: AsRef<[u8]>> MaskConfigBuffer<T>[src]

pub fn new(bytes: T) -> Result<Self, DecodeError>[src]

Creates a new buffer from bytes.

Errors

Fails if the bytes don't conform to the required buffer length for masking configurations.

pub fn new_unchecked(bytes: T) -> Self[src]

Creates a new buffer from bytes.

pub fn check_buffer_length(&self) -> Result<(), DecodeError>[src]

Checks if this buffer conforms to the required buffer length for masking configurations.

Errors

Fails if the buffer is too small.

pub fn group_type(&self) -> u8[src]

Gets the serialized group type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn data_type(&self) -> u8[src]

Gets the serialized data type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn bound_type(&self) -> u8[src]

Gets the serialized bound type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn model_type(&self) -> u8[src]

Gets the serialized model type of the masking configuration.

Panics

May panic if this buffer is unchecked.

impl<T: AsMut<[u8]>> MaskConfigBuffer<T>[src]

pub fn set_group_type(&mut self, value: u8)[src]

Sets the serialized group type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn set_data_type(&mut self, value: u8)[src]

Sets the serialized data type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn set_bound_type(&mut self, value: u8)[src]

Sets the serialized bound type of the masking configuration.

Panics

May panic if this buffer is unchecked.

pub fn set_model_type(&mut self, value: u8)[src]

Sets the serialized model type of the masking configuration.

Panics

May panic if this buffer is unchecked.

Auto Trait Implementations

impl<T> RefUnwindSafe for MaskConfigBuffer<T> where
    T: RefUnwindSafe

impl<T> Send for MaskConfigBuffer<T> where
    T: Send

impl<T> Sync for MaskConfigBuffer<T> where
    T: Sync

impl<T> Unpin for MaskConfigBuffer<T> where
    T: Unpin

impl<T> UnwindSafe for MaskConfigBuffer<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,