pub struct CodecResult {
pub license: Option<LicenseInfo>,
pub limits: Option<LimitsInfo>,
pub message: Option<String>,
}Expand description
Successful API response fields used by the SDK (after error == SUCCESS).
Fields§
§license: Option<LicenseInfo>§limits: Option<LimitsInfo>§message: Option<String>Decoded secret message (decode only).
Trait Implementations§
Source§impl Clone for CodecResult
impl Clone for CodecResult
Source§fn clone(&self) -> CodecResult
fn clone(&self) -> CodecResult
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 moreAuto Trait Implementations§
impl Freeze for CodecResult
impl RefUnwindSafe for CodecResult
impl Send for CodecResult
impl Sync for CodecResult
impl Unpin for CodecResult
impl UnsafeUnpin for CodecResult
impl UnwindSafe for CodecResult
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