pub struct AliasDbRecord {
pub seqalias_id: u64,
pub seqid: String,
pub alias: String,
pub added: NaiveDateTime,
pub is_current: bool,
pub namespace: Namespace,
}
Expand description
Record as returned by AliasDb::find()
.
Fields§
§seqalias_id: u64
§seqid: String
§alias: String
§added: NaiveDateTime
§is_current: bool
§namespace: Namespace
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AliasDbRecord
impl RefUnwindSafe for AliasDbRecord
impl Send for AliasDbRecord
impl Sync for AliasDbRecord
impl Unpin for AliasDbRecord
impl UnwindSafe for AliasDbRecord
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