pub struct StringStringArray {
pub key: String,
pub values: Vec<String>,
}
Expand description
The table StringStringArray
in the namespace FBS.Common
Generated from these locations:
- Table
StringStringArray
in the filefbs/common.fbs:23
Fields§
§key: String
The field key
in the table StringStringArray
values: Vec<String>
The field values
in the table StringStringArray
Implementations§
Trait Implementations§
Source§impl Clone for StringStringArray
impl Clone for StringStringArray
Source§fn clone(&self) -> StringStringArray
fn clone(&self) -> StringStringArray
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 StringStringArray
impl Debug for StringStringArray
Source§impl<'de> Deserialize<'de> for StringStringArray
impl<'de> Deserialize<'de> for StringStringArray
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for StringStringArray
impl Hash for StringStringArray
Source§impl Ord for StringStringArray
impl Ord for StringStringArray
Source§fn cmp(&self, other: &StringStringArray) -> Ordering
fn cmp(&self, other: &StringStringArray) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StringStringArray
impl PartialEq for StringStringArray
Source§impl PartialOrd for StringStringArray
impl PartialOrd for StringStringArray
Source§impl Serialize for StringStringArray
impl Serialize for StringStringArray
Source§impl<'a> TryFrom<StringStringArrayRef<'a>> for StringStringArray
impl<'a> TryFrom<StringStringArrayRef<'a>> for StringStringArray
impl Eq for StringStringArray
impl StructuralPartialEq for StringStringArray
impl VectorWrite<Offset<StringStringArray>> for StringStringArray
impl WriteAs<Offset<StringStringArray>> for StringStringArray
impl WriteAsOffset<StringStringArray> for StringStringArray
impl<T0: WriteAs<Offset<str>>, T1: WriteAs<Offset<[Offset<str>]>>> WriteAsOffset<StringStringArray> for StringStringArrayBuilder<(T0, T1)>
impl WriteAsOptional<Offset<StringStringArray>> for StringStringArray
Auto Trait Implementations§
impl Freeze for StringStringArray
impl RefUnwindSafe for StringStringArray
impl Send for StringStringArray
impl Sync for StringStringArray
impl Unpin for StringStringArray
impl UnwindSafe for StringStringArray
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