Struct autd3_core::GlobalHeader
source · pub struct GlobalHeader {
pub msg_id: u8,
pub fpga_flag: FPGAControlFlags,
pub cpu_flag: CPUControlFlags,
pub size: u8,
pub data: [u8; 124],
}Fields§
§msg_id: u8§fpga_flag: FPGAControlFlags§cpu_flag: CPUControlFlags§size: u8§data: [u8; 124]Implementations§
source§impl GlobalHeader
impl GlobalHeader
pub fn new() -> GlobalHeader
pub fn mod_head(&self) -> &MOD_HEAD
pub fn mod_head_mut(&mut self) -> &mut MOD_HEAD
pub fn mod_body(&self) -> &MOD_BODY
pub fn mod_body_mut(&mut self) -> &mut MOD_BODY
pub fn silencer_header(&self) -> &SILENCER_HEADER
pub fn silencer_header_mut(&mut self) -> &mut SILENCER_HEADER
Trait Implementations§
source§impl Clone for GlobalHeader
impl Clone for GlobalHeader
source§fn clone(&self) -> GlobalHeader
fn clone(&self) -> GlobalHeader
Returns a copy 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 Default for GlobalHeader
impl Default for GlobalHeader
source§fn default() -> GlobalHeader
fn default() -> GlobalHeader
Returns the “default value” for a type. Read more
impl Copy for GlobalHeader
Auto Trait Implementations§
impl RefUnwindSafe for GlobalHeader
impl Send for GlobalHeader
impl Sync for GlobalHeader
impl Unpin for GlobalHeader
impl UnwindSafe for GlobalHeader
Blanket Implementations§
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.