pub struct SecretMigrationFailure {
pub workspace_id: String,
pub path: String,
pub error: String,
}Fields§
§workspace_id: StringWorkspace ID where the secret is located
path: StringPath of the secret that failed to migrate
error: StringError message
Implementations§
Trait Implementations§
Source§impl Clone for SecretMigrationFailure
impl Clone for SecretMigrationFailure
Source§fn clone(&self) -> SecretMigrationFailure
fn clone(&self) -> SecretMigrationFailure
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 moreSource§impl Debug for SecretMigrationFailure
impl Debug for SecretMigrationFailure
Source§impl Default for SecretMigrationFailure
impl Default for SecretMigrationFailure
Source§fn default() -> SecretMigrationFailure
fn default() -> SecretMigrationFailure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretMigrationFailure
impl<'de> Deserialize<'de> for SecretMigrationFailure
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
Source§impl PartialEq for SecretMigrationFailure
impl PartialEq for SecretMigrationFailure
Source§impl Serialize for SecretMigrationFailure
impl Serialize for SecretMigrationFailure
impl StructuralPartialEq for SecretMigrationFailure
Auto Trait Implementations§
impl Freeze for SecretMigrationFailure
impl RefUnwindSafe for SecretMigrationFailure
impl Send for SecretMigrationFailure
impl Sync for SecretMigrationFailure
impl Unpin for SecretMigrationFailure
impl UnwindSafe for SecretMigrationFailure
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