pub struct Uint32String {
pub key: u32,
pub value: String,
}
Expand description
The table Uint32String
in the namespace FBS.Common
Generated from these locations:
- Table
Uint32String
in the filefbs/common.fbs:18
Fields§
§key: u32
The field key
in the table Uint32String
value: String
The field value
in the table Uint32String
Implementations§
Source§impl Uint32String
impl Uint32String
Sourcepub fn builder() -> Uint32StringBuilder<()>
pub fn builder() -> Uint32StringBuilder<()>
Creates a Uint32StringBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_key: impl WriteAsDefault<u32, u32>, field_value: impl WriteAs<Offset<str>>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for Uint32String
impl Clone for Uint32String
Source§fn clone(&self) -> Uint32String
fn clone(&self) -> Uint32String
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 Uint32String
impl Debug for Uint32String
Source§impl<'de> Deserialize<'de> for Uint32String
impl<'de> Deserialize<'de> for Uint32String
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 Uint32String
impl Hash for Uint32String
Source§impl Ord for Uint32String
impl Ord for Uint32String
Source§fn cmp(&self, other: &Uint32String) -> Ordering
fn cmp(&self, other: &Uint32String) -> 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 Uint32String
impl PartialEq for Uint32String
Source§impl PartialOrd for Uint32String
impl PartialOrd for Uint32String
Source§impl Serialize for Uint32String
impl Serialize for Uint32String
Source§impl<'a> TryFrom<Uint32StringRef<'a>> for Uint32String
impl<'a> TryFrom<Uint32StringRef<'a>> for Uint32String
impl Eq for Uint32String
impl StructuralPartialEq for Uint32String
impl VectorWrite<Offset<Uint32String>> for Uint32String
impl WriteAs<Offset<Uint32String>> for Uint32String
impl WriteAsOffset<Uint32String> for Uint32String
impl<T0: WriteAsDefault<u32, u32>, T1: WriteAs<Offset<str>>> WriteAsOffset<Uint32String> for Uint32StringBuilder<(T0, T1)>
impl WriteAsOptional<Offset<Uint32String>> for Uint32String
Auto Trait Implementations§
impl Freeze for Uint32String
impl RefUnwindSafe for Uint32String
impl Send for Uint32String
impl Sync for Uint32String
impl Unpin for Uint32String
impl UnwindSafe for Uint32String
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