pub struct SecretIdent {
pub from_addr: String,
pub to_addr: Option<String>,
pub random_id: RandomId,
pub index: usize,
}Fields§
§from_addr: String§to_addr: Option<String>§random_id: RandomId§index: usizeImplementations§
Source§impl SecretIdent
impl SecretIdent
Trait Implementations§
Source§impl BorshDeserialize for SecretIdent
impl BorshDeserialize for SecretIdent
Source§impl BorshSerialize for SecretIdentwhere
String: BorshSerialize,
Option<String>: BorshSerialize,
RandomId: BorshSerialize,
usize: BorshSerialize,
impl BorshSerialize for SecretIdentwhere
String: BorshSerialize,
Option<String>: BorshSerialize,
RandomId: BorshSerialize,
usize: BorshSerialize,
Source§impl Clone for SecretIdent
impl Clone for SecretIdent
Source§fn clone(&self) -> SecretIdent
fn clone(&self) -> SecretIdent
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 SecretIdent
impl Debug for SecretIdent
Source§impl Hash for SecretIdent
impl Hash for SecretIdent
Source§impl Ord for SecretIdent
impl Ord for SecretIdent
Source§fn cmp(&self, other: &SecretIdent) -> Ordering
fn cmp(&self, other: &SecretIdent) -> 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 SecretIdent
impl PartialEq for SecretIdent
Source§impl PartialOrd for SecretIdent
impl PartialOrd for SecretIdent
impl Eq for SecretIdent
impl StructuralPartialEq for SecretIdent
Auto Trait Implementations§
impl Freeze for SecretIdent
impl RefUnwindSafe for SecretIdent
impl Send for SecretIdent
impl Sync for SecretIdent
impl Unpin for SecretIdent
impl UnwindSafe for SecretIdent
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