pub struct LocalTimeOffsetDescriptor {
pub entries: Vec<LocalTimeOffsetEntry>,
}Expand description
Local Time Offset Descriptor.
Fields§
§entries: Vec<LocalTimeOffsetEntry>Entries in wire order.
Trait Implementations§
Source§impl Clone for LocalTimeOffsetDescriptor
impl Clone for LocalTimeOffsetDescriptor
Source§fn clone(&self) -> LocalTimeOffsetDescriptor
fn clone(&self) -> LocalTimeOffsetDescriptor
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 LocalTimeOffsetDescriptor
impl Debug for LocalTimeOffsetDescriptor
Source§impl<'a> Descriptor<'a> for LocalTimeOffsetDescriptor
impl<'a> Descriptor<'a> for LocalTimeOffsetDescriptor
Source§impl<'a> DescriptorDef<'a> for LocalTimeOffsetDescriptor
impl<'a> DescriptorDef<'a> for LocalTimeOffsetDescriptor
impl Eq for LocalTimeOffsetDescriptor
Source§impl<'a> From<LocalTimeOffsetDescriptor> for AnyDescriptor<'a>
impl<'a> From<LocalTimeOffsetDescriptor> for AnyDescriptor<'a>
Source§fn from(d: LocalTimeOffsetDescriptor) -> Self
fn from(d: LocalTimeOffsetDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for LocalTimeOffsetDescriptor
impl<'a> Parse<'a> for LocalTimeOffsetDescriptor
Source§impl PartialEq for LocalTimeOffsetDescriptor
impl PartialEq for LocalTimeOffsetDescriptor
Source§fn eq(&self, other: &LocalTimeOffsetDescriptor) -> bool
fn eq(&self, other: &LocalTimeOffsetDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalTimeOffsetDescriptor
impl Serialize for LocalTimeOffsetDescriptor
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for LocalTimeOffsetDescriptor
Auto Trait Implementations§
impl Freeze for LocalTimeOffsetDescriptor
impl RefUnwindSafe for LocalTimeOffsetDescriptor
impl Send for LocalTimeOffsetDescriptor
impl Sync for LocalTimeOffsetDescriptor
impl Unpin for LocalTimeOffsetDescriptor
impl UnsafeUnpin for LocalTimeOffsetDescriptor
impl UnwindSafe for LocalTimeOffsetDescriptor
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