Struct cameleon_genapi::IntConverterNode
source · pub struct IntConverterNode { /* private fields */ }Implementations
sourceimpl IntConverterNode
impl IntConverterNode
pub fn p_variables(&self) -> &[NamedValue<NodeId>]
pub fn constants(&self) -> &[NamedValue<i64>]
pub fn expressions(&self) -> &[NamedValue<Expr>]
pub fn formula_to(&self) -> &Formula
pub fn formula_from(&self) -> &Formula
pub fn p_value(&self) -> NodeId
pub fn unit_elem(&self) -> Option<&str>
pub fn representation_elem(&self) -> IntegerRepresentation
pub fn slope(&self) -> Slope
Trait Implementations
sourceimpl Clone for IntConverterNode
impl Clone for IntConverterNode
sourcefn clone(&self) -> IntConverterNode
fn clone(&self) -> IntConverterNode
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 Debug for IntConverterNode
impl Debug for IntConverterNode
sourceimpl IInteger for IntConverterNode
impl IInteger for IntConverterNode
fn value<T: ValueStore, U: CacheStore>(
&self,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<i64>
fn set_value<T: ValueStore, U: CacheStore>(
&self,
value: i64,
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>
) -> GenApiResult<()>
fn min<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>
) -> GenApiResult<i64>
fn max<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>
) -> GenApiResult<i64>
fn inc_mode(&self, _: &impl NodeStore) -> Option<IncrementMode>
fn inc<T: ValueStore, U: CacheStore>(
&self,
_: &mut impl Device,
_: &impl NodeStore,
_: &mut ValueCtxt<T, U>
) -> GenApiResult<Option<i64>>
sourcefn valid_value_set(&self, _: &impl NodeStore) -> &[i64]
fn valid_value_set(&self, _: &impl NodeStore) -> &[i64]
NOTE:
ValidValueSet is not supported in GenApiSchema Version 1.1 yet.fn representation(&self, _: &impl NodeStore) -> IntegerRepresentation
fn unit(&self, _: &impl NodeStore) -> Option<&str>
fn set_min<T: ValueStore, U: CacheStore>(
&self,
_: i64,
_: &mut impl Device,
store: &impl NodeStore,
_: &mut ValueCtxt<T, U>
) -> GenApiResult<()>
fn set_max<T: ValueStore, U: CacheStore>(
&self,
_: i64,
_: &mut impl Device,
store: &impl NodeStore,
_: &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>
Auto Trait Implementations
impl RefUnwindSafe for IntConverterNode
impl Send for IntConverterNode
impl Sync for IntConverterNode
impl Unpin for IntConverterNode
impl UnwindSafe for IntConverterNode
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