pub struct AuthInfo {
pub configured: bool,
pub db_id: String,
pub owner_pubkey: Option<String>,
pub owner_sequence: Option<u64>,
}Expand description
Owner-write authorization metadata exposed by the Circle program.
Fields§
§configured: bool§db_id: String§owner_pubkey: Option<String>§owner_sequence: Option<u64>Trait Implementations§
impl Eq for AuthInfo
impl StructuralPartialEq for AuthInfo
Auto Trait Implementations§
impl Freeze for AuthInfo
impl RefUnwindSafe for AuthInfo
impl Send for AuthInfo
impl Sync for AuthInfo
impl Unpin for AuthInfo
impl UnsafeUnpin for AuthInfo
impl UnwindSafe for AuthInfo
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