#[repr(C)]pub struct variable {
pub name: *mut c_char,
pub value: *mut c_char,
pub exportstr: *mut c_char,
pub dynamic_value: sh_var_value_func_t,
pub assign_func: sh_var_assign_func_t,
pub attributes: c_int,
pub context: c_int,
}Fields§
§name: *mut c_char§value: *mut c_char§exportstr: *mut c_char§dynamic_value: sh_var_value_func_t§assign_func: sh_var_assign_func_t§attributes: c_int§context: c_intTrait Implementations§
impl Copy for variable
Auto Trait Implementations§
impl Freeze for variable
impl RefUnwindSafe for variable
impl !Send for variable
impl !Sync for variable
impl Unpin for variable
impl UnwindSafe for variable
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more