pub struct ProfileProperty {
pub name: String,
pub value: String,
pub signature: Option<String>,
}Fields§
§name: String§value: StringThe base64 encoded value.
signature: Option<String>The optional public key signature (Yggdrasil).
Trait Implementations§
Source§impl Clone for ProfileProperty
impl Clone for ProfileProperty
Source§fn clone(&self) -> ProfileProperty
fn clone(&self) -> ProfileProperty
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 ProfileProperty
impl Debug for ProfileProperty
Source§impl<'a> Decode<'a> for ProfileProperty
impl<'a> Decode<'a> for ProfileProperty
Source§impl Encode for ProfileProperty
impl Encode for ProfileProperty
Source§impl PartialEq for ProfileProperty
impl PartialEq for ProfileProperty
impl StructuralPartialEq for ProfileProperty
Auto Trait Implementations§
impl Freeze for ProfileProperty
impl RefUnwindSafe for ProfileProperty
impl Send for ProfileProperty
impl Sync for ProfileProperty
impl Unpin for ProfileProperty
impl UnwindSafe for ProfileProperty
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