pub struct Int32Property {
pub key: Int32PropertyKey,
pub last_value: i32,
/* private fields */
}Expand description
An int32 property that can be refreshed to “check” the property at any point.
Fields§
§key: Int32PropertyKey§last_value: i32Implementations§
Source§impl Int32Property
impl Int32Property
pub fn refresh_value(&mut self) -> Result<(), RefreshValueError>
Trait Implementations§
Source§impl Clone for Int32Property
impl Clone for Int32Property
Source§fn clone(&self) -> Int32Property
fn clone(&self) -> Int32Property
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 Debug for Int32Property
impl Debug for Int32Property
Source§impl PartialEq for Int32Property
impl PartialEq for Int32Property
impl StructuralPartialEq for Int32Property
Auto Trait Implementations§
impl Freeze for Int32Property
impl RefUnwindSafe for Int32Property
impl Send for Int32Property
impl Sync for Int32Property
impl Unpin for Int32Property
impl UnwindSafe for Int32Property
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