pub struct AddressList {
pub address: Option<Address>,
pub version: u32,
pub reinit_date: u32,
pub expire_at: u32,
}Fields§
§address: Option<Address>Single address instead of list, because only one is always passed
version: u32§reinit_date: u32§expire_at: u32Trait Implementations§
Source§impl BoxedConstructor for AddressList
impl BoxedConstructor for AddressList
Source§fn as_boxed(&self) -> BoxedWrapper<&Self>
fn as_boxed(&self) -> BoxedWrapper<&Self>
Wraps bare type reference into
BoxedWrapper.Source§fn into_boxed(self) -> BoxedWrapper<Self>
fn into_boxed(self) -> BoxedWrapper<Self>
Converts bare type into
BoxedWrapper.Source§impl Clone for AddressList
impl Clone for AddressList
Source§fn clone(&self) -> AddressList
fn clone(&self) -> AddressList
Returns a duplicate 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 AddressList
impl Debug for AddressList
Source§impl<'tl> TlRead<'tl> for AddressList
impl<'tl> TlRead<'tl> for AddressList
Source§impl TlWrite for AddressList
impl TlWrite for AddressList
impl Copy for AddressList
Auto Trait Implementations§
impl Freeze for AddressList
impl RefUnwindSafe for AddressList
impl Send for AddressList
impl Sync for AddressList
impl Unpin for AddressList
impl UnwindSafe for AddressList
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