#[repr(C)]pub struct TiArgument {
pub type: TiArgumentType,
pub value: TiArgumentValue,
}Expand description
Structure TiArgument
An argument value to feed kernels.
Fields§
§type: TiArgumentTypeType of the argument.
value: TiArgumentValueValue of the argument.
Trait Implementations§
Source§impl Clone for TiArgument
impl Clone for TiArgument
Source§fn clone(&self) -> TiArgument
fn clone(&self) -> TiArgument
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 moreimpl Copy for TiArgument
Auto Trait Implementations§
impl Freeze for TiArgument
impl RefUnwindSafe for TiArgument
impl Send for TiArgument
impl Sync for TiArgument
impl Unpin for TiArgument
impl UnwindSafe for TiArgument
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