pub struct EncoderResult {
pub address: Address,
pub non_bounceable: bool,
pub non_production: bool,
pub decoder: Base64Decoder,
}
Expand description
An intermediate structure that should not be used explicitly,
and represents the result of decoding an address through
the Address
structure.
Fields§
§address: Address
§non_bounceable: bool
§non_production: bool
§decoder: Base64Decoder
Implementations§
Source§impl EncoderResult
impl EncoderResult
pub fn is_non_bounceable(&self) -> bool
pub fn is_non_production(&self) -> bool
pub fn is_bounceable(&self) -> bool
pub fn is_production(&self) -> bool
Trait Implementations§
Source§impl Debug for EncoderResult
impl Debug for EncoderResult
Auto Trait Implementations§
impl Freeze for EncoderResult
impl RefUnwindSafe for EncoderResult
impl Send for EncoderResult
impl Sync for EncoderResult
impl Unpin for EncoderResult
impl UnwindSafe for EncoderResult
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