pub struct ValidationKeyDto {
pub key_id: String,
pub public_key_pem: String,
pub days_till_expired: f64,
pub enabled: bool,
pub created_at: f64,
}
Fields§
§key_id: String
External validation key id set by Fireblocks.
public_key_pem: String
PEM encoded public key used for the validation.
days_till_expired: f64
§enabled: bool
True if the validation key is enabled.
created_at: f64
Creation date (timestamp) in milliseconds.
Implementations§
Trait Implementations§
Source§impl Clone for ValidationKeyDto
impl Clone for ValidationKeyDto
Source§fn clone(&self) -> ValidationKeyDto
fn clone(&self) -> ValidationKeyDto
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 ValidationKeyDto
impl Debug for ValidationKeyDto
Source§impl Default for ValidationKeyDto
impl Default for ValidationKeyDto
Source§fn default() -> ValidationKeyDto
fn default() -> ValidationKeyDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValidationKeyDto
impl<'de> Deserialize<'de> for ValidationKeyDto
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 ValidationKeyDto
impl PartialEq for ValidationKeyDto
Source§impl Serialize for ValidationKeyDto
impl Serialize for ValidationKeyDto
impl StructuralPartialEq for ValidationKeyDto
Auto Trait Implementations§
impl Freeze for ValidationKeyDto
impl RefUnwindSafe for ValidationKeyDto
impl Send for ValidationKeyDto
impl Sync for ValidationKeyDto
impl Unpin for ValidationKeyDto
impl UnwindSafe for ValidationKeyDto
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