Struct scs_sdk_rs::scs_value_string_t
source · #[repr(C)]pub struct scs_value_string_t {
pub value: scs_string_t,
}Expand description
@brief String value.
The provided value is UTF8 encoded however in some documented cases only limited ASCII compatible subset might be present.
The pointer is never NULL.
Fields§
§value: scs_string_tTrait Implementations§
source§impl Clone for scs_value_string_t
impl Clone for scs_value_string_t
source§fn clone(&self) -> scs_value_string_t
fn clone(&self) -> scs_value_string_t
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 scs_value_string_t
impl Debug for scs_value_string_t
impl Copy for scs_value_string_t
Auto Trait Implementations§
impl RefUnwindSafe for scs_value_string_t
impl !Send for scs_value_string_t
impl !Sync for scs_value_string_t
impl Unpin for scs_value_string_t
impl UnwindSafe for scs_value_string_t
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