pub struct FedNowMessageSignatureKey {
pub fed_now_key_id: String,
pub name: String,
pub encoded_public_key: String,
pub encoding: String,
pub algorithm: Option<String>,
pub key_creation_date_time: Option<String>,
}Fields§
§fed_now_key_id: String§name: String§encoded_public_key: String§encoding: String§algorithm: Option<String>§key_creation_date_time: Option<String>Implementations§
Source§impl FedNowMessageSignatureKey
impl FedNowMessageSignatureKey
pub fn validate(&self) -> Result<(), ValidationError>
Trait Implementations§
Source§impl Clone for FedNowMessageSignatureKey
impl Clone for FedNowMessageSignatureKey
Source§fn clone(&self) -> FedNowMessageSignatureKey
fn clone(&self) -> FedNowMessageSignatureKey
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 FedNowMessageSignatureKey
impl Debug for FedNowMessageSignatureKey
Source§impl Default for FedNowMessageSignatureKey
impl Default for FedNowMessageSignatureKey
Source§fn default() -> FedNowMessageSignatureKey
fn default() -> FedNowMessageSignatureKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FedNowMessageSignatureKey
impl<'de> Deserialize<'de> for FedNowMessageSignatureKey
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
impl StructuralPartialEq for FedNowMessageSignatureKey
Auto Trait Implementations§
impl Freeze for FedNowMessageSignatureKey
impl RefUnwindSafe for FedNowMessageSignatureKey
impl Send for FedNowMessageSignatureKey
impl Sync for FedNowMessageSignatureKey
impl Unpin for FedNowMessageSignatureKey
impl UnwindSafe for FedNowMessageSignatureKey
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