Struct ruma::Base64PublicKey

source ·
pub struct Base64PublicKey(/* private fields */);
Expand description

A public key encoded using unpadded base64, used as an identifier for cross-signing keys.

This string is validated using the set [a-zA-Z0-9+/=], but it is not validated to be decodable as base64. This type is provided simply for its semantic value.

Implementations§

source§

impl Base64PublicKey

source

pub fn as_str(&self) -> &str

Creates a string slice from this Base64PublicKey.

source

pub fn as_bytes(&self) -> &[u8]

Creates a byte slice from this Base64PublicKey.

source§

impl Base64PublicKey

source

pub fn parse(s: impl AsRef<str>) -> Result<OwnedBase64PublicKey, Error>

Try parsing a &str into an OwnedBase64PublicKey.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

source

pub fn parse_box( s: impl AsRef<str> + Into<Box<str>>, ) -> Result<Box<Base64PublicKey>, Error>

Try parsing a &str into a Box<Base64PublicKey>.

The same can also be done using FromStr, TryFrom or TryInto. This function is simply more constrained and thus useful in generic contexts.

source

pub fn parse_rc( s: impl AsRef<str> + Into<Rc<str>>, ) -> Result<Rc<Base64PublicKey>, Error>

Try parsing a &str into an Rc<Base64PublicKey>.

source

pub fn parse_arc( s: impl AsRef<str> + Into<Arc<str>>, ) -> Result<Arc<Base64PublicKey>, Error>

Try parsing a &str into an Arc<Base64PublicKey>.

Trait Implementations§

source§

impl AsRef<[u8]> for Base64PublicKey

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Base64PublicKey> for Base64PublicKey

source§

fn as_ref(&self) -> &Base64PublicKey

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<Base64PublicKey> for OwnedBase64PublicKey

source§

fn as_ref(&self) -> &Base64PublicKey

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl AsRef<str> for Base64PublicKey

source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Borrow<Base64PublicKey> for OwnedBase64PublicKey

source§

fn borrow(&self) -> &Base64PublicKey

Immutably borrows from an owned value. Read more
source§

impl Clone for Box<Base64PublicKey>

source§

fn clone(&self) -> Box<Base64PublicKey>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Base64PublicKey

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Box<Base64PublicKey>

source§

fn deserialize<D>( deserializer: D, ) -> Result<Box<Base64PublicKey>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Base64PublicKey

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a Base64PublicKey> for &'a Base64PublicKeyOrDeviceId

source§

fn from(value: &'a Base64PublicKey) -> &'a Base64PublicKeyOrDeviceId

Converts to this type from the input type.
source§

impl From<&Base64PublicKey> for Arc<Base64PublicKey>

source§

fn from(s: &Base64PublicKey) -> Arc<Base64PublicKey>

Converts to this type from the input type.
source§

impl From<&Base64PublicKey> for Box<Base64PublicKey>

source§

fn from(id: &Base64PublicKey) -> Box<Base64PublicKey>

Converts to this type from the input type.
source§

impl From<&Base64PublicKey> for OwnedBase64PublicKey

source§

fn from(id: &Base64PublicKey) -> OwnedBase64PublicKey

Converts to this type from the input type.
source§

impl From<&Base64PublicKey> for Rc<Base64PublicKey>

source§

fn from(s: &Base64PublicKey) -> Rc<Base64PublicKey>

Converts to this type from the input type.
source§

impl From<&Base64PublicKey> for String

source§

fn from(id: &Base64PublicKey) -> String

Converts to this type from the input type.
source§

impl From<OwnedBase64PublicKey> for Box<Base64PublicKey>

source§

fn from(a: OwnedBase64PublicKey) -> Box<Base64PublicKey>

Converts to this type from the input type.
source§

impl Hash for Base64PublicKey

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
source§

impl KeyName for Base64PublicKey

source§

fn validate(s: &str) -> Result<(), Error>

Validate the given string for this name.
source§

impl Ord for Base64PublicKey

source§

fn cmp(&self, other: &Base64PublicKey) -> Ordering

This method returns an Ordering between self and other. Read more
source§

impl PartialEq<&Base64PublicKey> for OwnedBase64PublicKey

source§

fn eq(&self, other: &&Base64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<&str> for Base64PublicKey

source§

fn eq(&self, other: &&str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Base64PublicKey> for &str

source§

fn eq(&self, other: &Base64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Base64PublicKey> for OwnedBase64PublicKey

source§

fn eq(&self, other: &Base64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Base64PublicKey> for str

source§

fn eq(&self, other: &Base64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<Base64PublicKey>> for &Base64PublicKey

source§

fn eq(&self, other: &Box<Base64PublicKey>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Box<Base64PublicKey>> for Base64PublicKey

source§

fn eq(&self, other: &Box<Base64PublicKey>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedBase64PublicKey> for &Base64PublicKey

source§

fn eq(&self, other: &OwnedBase64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<OwnedBase64PublicKey> for Base64PublicKey

source§

fn eq(&self, other: &OwnedBase64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<String> for Base64PublicKey

source§

fn eq(&self, other: &String) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<str> for Base64PublicKey

source§

fn eq(&self, other: &str) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for Base64PublicKey

source§

fn eq(&self, other: &Base64PublicKey) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Base64PublicKey

source§

fn partial_cmp(&self, other: &Base64PublicKey) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for Base64PublicKey

source§

fn serialize<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl ToOwned for Base64PublicKey

§

type Owned = OwnedBase64PublicKey

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> <Base64PublicKey as ToOwned>::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl TryFrom<&Base64PublicKey> for Base64

§

type Error = Base64DecodeError

The type returned in the event of a conversion error.
source§

fn try_from( value: &Base64PublicKey, ) -> Result<Base64, <Base64 as TryFrom<&Base64PublicKey>>::Error>

Performs the conversion.
source§

impl<'a> TryFrom<&'a str> for &'a Base64PublicKey

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( s: &'a str, ) -> Result<&'a Base64PublicKey, <&'a Base64PublicKey as TryFrom<&'a str>>::Error>

Performs the conversion.
source§

impl TryFrom<&str> for Box<Base64PublicKey>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( s: &str, ) -> Result<Box<Base64PublicKey>, <Box<Base64PublicKey> as TryFrom<&str>>::Error>

Performs the conversion.
source§

impl TryFrom<String> for Box<Base64PublicKey>

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from( s: String, ) -> Result<Box<Base64PublicKey>, <Box<Base64PublicKey> as TryFrom<String>>::Error>

Performs the conversion.
source§

impl Eq for Base64PublicKey

source§

impl StructuralPartialEq for Base64PublicKey

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

impl<T> Identity for T
where T: ?Sized,

§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more