pub struct MigrateEncryptionResponse {
pub objects_encrypted: usize,
pub objects_unpacked: usize,
pub refs_encrypted: usize,
pub index_encrypted: bool,
pub packs_expanded: usize,
pub already_encrypted: usize,
pub message: String,
}Fields§
§objects_encrypted: usize§objects_unpacked: usize§refs_encrypted: usize§index_encrypted: bool§packs_expanded: usize§already_encrypted: usize§message: StringTrait Implementations§
Source§impl CommandResponse for MigrateEncryptionResponse
impl CommandResponse for MigrateEncryptionResponse
Source§fn command_name(&self) -> &'static str
fn command_name(&self) -> &'static str
The command name for the response envelope
Source§fn human_readable(&self) -> String
fn human_readable(&self) -> String
Render as human-readable text
Source§fn to_json_output(&self) -> String
fn to_json_output(&self) -> String
Render as JSON (default implementation via serde). Read more
Source§fn to_json_output_pretty(&self) -> String
fn to_json_output_pretty(&self) -> String
Render as indented, human-readable JSON (opt-in via
--pretty).Source§impl Debug for MigrateEncryptionResponse
impl Debug for MigrateEncryptionResponse
Source§impl<'de> Deserialize<'de> for MigrateEncryptionResponse
impl<'de> Deserialize<'de> for MigrateEncryptionResponse
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 MigrateEncryptionResponse
impl RefUnwindSafe for MigrateEncryptionResponse
impl Send for MigrateEncryptionResponse
impl Sync for MigrateEncryptionResponse
impl Unpin for MigrateEncryptionResponse
impl UnsafeUnpin for MigrateEncryptionResponse
impl UnwindSafe for MigrateEncryptionResponse
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