pub struct StringSelectValue {
pub type_name: Option<String>,
pub value: String,
}Expand description
select-of-named-strings (e.g. SELECT(identifier, message)): Some(type_name)
= typed member TYPE('s'); None = bare string.
Fields§
§type_name: Option<String>§value: StringTrait Implementations§
Source§impl Clone for StringSelectValue
impl Clone for StringSelectValue
Source§fn clone(&self) -> StringSelectValue
fn clone(&self) -> StringSelectValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StringSelectValue
impl Debug for StringSelectValue
Source§impl PartialEq for StringSelectValue
impl PartialEq for StringSelectValue
Source§fn eq(&self, other: &StringSelectValue) -> bool
fn eq(&self, other: &StringSelectValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StringSelectValue
Auto Trait Implementations§
impl Freeze for StringSelectValue
impl RefUnwindSafe for StringSelectValue
impl Send for StringSelectValue
impl Sync for StringSelectValue
impl Unpin for StringSelectValue
impl UnsafeUnpin for StringSelectValue
impl UnwindSafe for StringSelectValue
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