pub struct ConditionalWidgetReferenceFlags {
pub load_if_event_handler_function_fails: bool,
}Fields§
§load_if_event_handler_function_fails: boolImplementations§
Trait Implementations§
Source§impl Clone for ConditionalWidgetReferenceFlags
impl Clone for ConditionalWidgetReferenceFlags
Source§fn clone(&self) -> ConditionalWidgetReferenceFlags
fn clone(&self) -> ConditionalWidgetReferenceFlags
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 Default for ConditionalWidgetReferenceFlags
impl Default for ConditionalWidgetReferenceFlags
Source§fn default() -> ConditionalWidgetReferenceFlags
fn default() -> ConditionalWidgetReferenceFlags
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConditionalWidgetReferenceFlags
impl PartialEq for ConditionalWidgetReferenceFlags
Source§fn eq(&self, other: &ConditionalWidgetReferenceFlags) -> bool
fn eq(&self, other: &ConditionalWidgetReferenceFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TagSerialize for ConditionalWidgetReferenceFlags
impl TagSerialize for ConditionalWidgetReferenceFlags
Source§fn into_tag(
&self,
data: &mut Vec<u8>,
at: usize,
struct_end: usize,
) -> ErrorMessageResult<()>
fn into_tag( &self, data: &mut Vec<u8>, at: usize, struct_end: usize, ) -> ErrorMessageResult<()>
Serialize the data into tag format, returning an error on failure (except for out-of-bounds and allocation errors which will panic).
Source§fn from_tag(
data: &[u8],
at: usize,
struct_end: usize,
cursor: &mut usize,
) -> ErrorMessageResult<ConditionalWidgetReferenceFlags>
fn from_tag( data: &[u8], at: usize, struct_end: usize, cursor: &mut usize, ) -> ErrorMessageResult<ConditionalWidgetReferenceFlags>
Deserialize the data from tag format, returning an error on failure (except for allocation errors which will panic).
Source§fn into_tag_cached(
&self,
data: &mut [u8],
at: usize,
struct_end: usize,
) -> ErrorMessageResult<()>where
Self: Sized,
fn into_tag_cached(
&self,
data: &mut [u8],
at: usize,
struct_end: usize,
) -> ErrorMessageResult<()>where
Self: Sized,
Serialize the data into tag format in little endian, returning an error on failure (except for out-of-bounds and allocation errors which will panic).
Source§fn from_tag_cached(
data: &[u8],
at: usize,
struct_end: usize,
) -> ErrorMessageResult<Self>where
Self: Sized,
fn from_tag_cached(
data: &[u8],
at: usize,
struct_end: usize,
) -> ErrorMessageResult<Self>where
Self: Sized,
Deserialize the data from tag format from little endian, returning an error on failure (except for allocation errors which will panic).
impl Copy for ConditionalWidgetReferenceFlags
impl StructuralPartialEq for ConditionalWidgetReferenceFlags
Auto Trait Implementations§
impl Freeze for ConditionalWidgetReferenceFlags
impl RefUnwindSafe for ConditionalWidgetReferenceFlags
impl Send for ConditionalWidgetReferenceFlags
impl Sync for ConditionalWidgetReferenceFlags
impl Unpin for ConditionalWidgetReferenceFlags
impl UnwindSafe for ConditionalWidgetReferenceFlags
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