Enum cameleon_genapi::interface::IBooleanKind
source · pub enum IBooleanKind<'a> {
Boolean(&'a BooleanNode),
}Variants
Boolean(&'a BooleanNode)
Trait Implementations
sourceimpl<'a> Clone for IBooleanKind<'a>
impl<'a> Clone for IBooleanKind<'a>
sourcefn clone(&self) -> IBooleanKind<'a>
fn clone(&self) -> IBooleanKind<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'a> Debug for IBooleanKind<'a>
impl<'a> Debug for IBooleanKind<'a>
sourceimpl<'a> IBoolean for IBooleanKind<'a>
impl<'a> IBoolean for IBooleanKind<'a>
fn value<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<bool>
fn set_value<T: ValueStore, U: CacheStore>(
&self,
value: bool,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<()>
fn is_readable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<bool>
fn is_writable<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<bool>
impl<'a> Copy for IBooleanKind<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for IBooleanKind<'a>
impl<'a> Send for IBooleanKind<'a>
impl<'a> Sync for IBooleanKind<'a>
impl<'a> Unpin for IBooleanKind<'a>
impl<'a> UnwindSafe for IBooleanKind<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more