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: boolWhether owner-write authorization is configured.
db_id: StringDatabase identity bound into OSW1 owner-write intents.
owner_pubkey: Option<String>Owner public key accepted by the Circle program.
owner_sequence: Option<u64>Next owner-write sequence when the Circle reports it.
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