pub struct Output {
pub activated: bool,
pub expected_blobs: i64,
pub imported_blobs: i64,
pub indexed_records: i64,
pub private_state_values: i64,
pub repo_blocks: i64,
pub repo_commit: String,
pub repo_rev: String,
pub valid_did: bool,
}Expand description
Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself. XRPC Query: com.atproto.server.checkAccountStatus
Fields§
§activated: bool§expected_blobs: i64§imported_blobs: i64§indexed_records: i64§private_state_values: i64§repo_blocks: i64§repo_commit: String§repo_rev: String§valid_did: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Output
impl<'de> Deserialize<'de> for Output
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnsafeUnpin for Output
impl UnwindSafe for Output
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