#[repr(C)]pub struct u32_result {
pub err: twz_error,
pub val: u32,
}
Expand description
Error or value
Fields§
§err: twz_error
§val: u32
Trait Implementations§
Source§impl Clone for u32_result
impl Clone for u32_result
Source§fn clone(&self) -> u32_result
fn clone(&self) -> u32_result
Returns a copy 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 u32_result
impl Debug for u32_result
Source§impl From<u32_result> for Result<u32>
impl From<u32_result> for Result<u32>
Source§fn from(value: u32_result) -> Self
fn from(value: u32_result) -> Self
Converts to this type from the input type.
impl Copy for u32_result
Auto Trait Implementations§
impl Freeze for u32_result
impl RefUnwindSafe for u32_result
impl Send for u32_result
impl Sync for u32_result
impl Unpin for u32_result
impl UnwindSafe for u32_result
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