pub struct OwnedLocalParameterEntry {
pub center_id: u16,
pub subcenter_id: Option<u16>,
pub local_table_version: Option<u8>,
pub discipline: u8,
pub category: u8,
pub number: u8,
pub short_name: String,
pub description: String,
}Expand description
Owned local table entry for authoring or loading table files.
Convert a LocalParameterTable into borrowed LocalParameterEntry
overlays with LocalParameterTable::entries.
Fields§
§center_id: u16§subcenter_id: Option<u16>§local_table_version: Option<u8>§discipline: u8§category: u8§number: u8§short_name: String§description: StringImplementations§
Trait Implementations§
Source§impl Clone for OwnedLocalParameterEntry
impl Clone for OwnedLocalParameterEntry
Source§fn clone(&self) -> OwnedLocalParameterEntry
fn clone(&self) -> OwnedLocalParameterEntry
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 OwnedLocalParameterEntry
impl Debug for OwnedLocalParameterEntry
impl Eq for OwnedLocalParameterEntry
Source§impl PartialEq for OwnedLocalParameterEntry
impl PartialEq for OwnedLocalParameterEntry
Source§fn eq(&self, other: &OwnedLocalParameterEntry) -> bool
fn eq(&self, other: &OwnedLocalParameterEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OwnedLocalParameterEntry
Auto Trait Implementations§
impl Freeze for OwnedLocalParameterEntry
impl RefUnwindSafe for OwnedLocalParameterEntry
impl Send for OwnedLocalParameterEntry
impl Sync for OwnedLocalParameterEntry
impl Unpin for OwnedLocalParameterEntry
impl UnsafeUnpin for OwnedLocalParameterEntry
impl UnwindSafe for OwnedLocalParameterEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more