pub struct PublisherKey {
pub algorithm: String,
pub public_key: String,
pub created_at: DateTime<Utc>,
pub expires_at: Option<DateTime<Utc>>,
pub revoked: bool,
pub usage: String,
}Fields§
§algorithm: String§public_key: String§created_at: DateTime<Utc>§expires_at: Option<DateTime<Utc>>§revoked: bool§usage: StringTrait Implementations§
Source§impl Debug for PublisherKey
impl Debug for PublisherKey
Source§impl<'de> Deserialize<'de> for PublisherKey
impl<'de> Deserialize<'de> for PublisherKey
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 PublisherKey
impl RefUnwindSafe for PublisherKey
impl Send for PublisherKey
impl Sync for PublisherKey
impl Unpin for PublisherKey
impl UnwindSafe for PublisherKey
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