pub struct IntegerNode { /* private fields */ }Expand description
Integer-valued GenICam parameter.
Implementations§
Source§impl IntegerNode
impl IntegerNode
Sourcepub fn unit(&self) -> PylonResult<String>
pub fn unit(&self) -> PylonResult<String>
Returns the engineering unit string.
Sourcepub fn value(&self) -> PylonResult<i64>
pub fn value(&self) -> PylonResult<i64>
Returns the current value.
Sourcepub fn min(&self) -> PylonResult<i64>
pub fn min(&self) -> PylonResult<i64>
Returns the minimum allowed value.
Sourcepub fn max(&self) -> PylonResult<i64>
pub fn max(&self) -> PylonResult<i64>
Returns the maximum allowed value.
Sourcepub fn set_value(&mut self, value: i64) -> PylonResult<()>
pub fn set_value(&mut self, value: i64) -> PylonResult<()>
Sets the current value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IntegerNode
impl RefUnwindSafe for IntegerNode
impl !Send for IntegerNode
impl !Sync for IntegerNode
impl Unpin for IntegerNode
impl UnsafeUnpin for IntegerNode
impl UnwindSafe for IntegerNode
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