Struct ruma::ClientSecret
source · [−]#[repr(transparent)]pub struct ClientSecret(_);
Expand description
A client secret.
Client secrets in Matrix are opaque character sequences of [0-9a-zA-Z.=_-]
. Their length must
must not exceed 255 characters.
You can create one from a string (using ClientSecret::parse()
) but the recommended way is to
use ClientSecret::new()
to generate a random one. If that function is not available for you,
you need to activate this crate’s rand
Cargo feature.
Implementations
sourceimpl ClientSecret
impl ClientSecret
sourceimpl ClientSecret
impl ClientSecret
sourcepub fn parse(s: impl AsRef<str>) -> Result<OwnedClientSecret, Error>
pub fn parse(s: impl AsRef<str>) -> Result<OwnedClientSecret, Error>
Try parsing a &str
into an OwnedClientSecret
.
The same can also be done using FromStr
, TryFrom
or TryInto
.
This function is simply more constrained and thus useful in generic contexts.
sourcepub fn parse_box(
s: impl AsRef<str> + Into<Box<str, Global>>
) -> Result<Box<ClientSecret, Global>, Error>
pub fn parse_box(
s: impl AsRef<str> + Into<Box<str, Global>>
) -> Result<Box<ClientSecret, Global>, Error>
Try parsing a &str
into a Box<ClientSecret>
.
The same can also be done using FromStr
, TryFrom
or TryInto
.
This function is simply more constrained and thus useful in generic contexts.
sourceimpl ClientSecret
impl ClientSecret
sourcepub fn new() -> OwnedClientSecret
pub fn new() -> OwnedClientSecret
Creates a random client secret.
This will currently be a UUID without hyphens, but no guarantees are made about the structure of client secrets generated from this function.
Trait Implementations
sourceimpl AsRef<ClientSecret> for OwnedClientSecret
impl AsRef<ClientSecret> for OwnedClientSecret
sourcefn as_ref(&self) -> &ClientSecret
fn as_ref(&self) -> &ClientSecret
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl AsRef<str> for ClientSecret
impl AsRef<str> for ClientSecret
sourceimpl Borrow<ClientSecret> for OwnedClientSecret
impl Borrow<ClientSecret> for OwnedClientSecret
sourcefn borrow(&self) -> &ClientSecret
fn borrow(&self) -> &ClientSecret
Immutably borrows from an owned value. Read more
sourceimpl Clone for Box<ClientSecret, Global>
impl Clone for Box<ClientSecret, Global>
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ClientSecret
impl Debug for ClientSecret
sourceimpl<'de> Deserialize<'de> for Box<ClientSecret, Global>
impl<'de> Deserialize<'de> for Box<ClientSecret, Global>
sourcefn deserialize<D>(
deserializer: D
) -> Result<Box<ClientSecret, Global>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<Box<ClientSecret, Global>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Display for ClientSecret
impl Display for ClientSecret
sourceimpl<'_> From<&ClientSecret> for String
impl<'_> From<&ClientSecret> for String
sourcefn from(id: &ClientSecret) -> String
fn from(id: &ClientSecret) -> String
Converts to this type from the input type.
sourceimpl<'_> From<&ClientSecret> for Box<ClientSecret, Global>
impl<'_> From<&ClientSecret> for Box<ClientSecret, Global>
sourcefn from(id: &ClientSecret) -> Box<ClientSecret, Global>
fn from(id: &ClientSecret) -> Box<ClientSecret, Global>
Converts to this type from the input type.
sourceimpl<'_> From<&ClientSecret> for OwnedClientSecret
impl<'_> From<&ClientSecret> for OwnedClientSecret
sourcefn from(id: &ClientSecret) -> OwnedClientSecret
fn from(id: &ClientSecret) -> OwnedClientSecret
Converts to this type from the input type.
sourceimpl<'_> From<&ClientSecret> for Rc<ClientSecret>
impl<'_> From<&ClientSecret> for Rc<ClientSecret>
sourcefn from(s: &ClientSecret) -> Rc<ClientSecret>
fn from(s: &ClientSecret) -> Rc<ClientSecret>
Converts to this type from the input type.
sourceimpl<'_> From<&ClientSecret> for Arc<ClientSecret>
impl<'_> From<&ClientSecret> for Arc<ClientSecret>
sourcefn from(s: &ClientSecret) -> Arc<ClientSecret>
fn from(s: &ClientSecret) -> Arc<ClientSecret>
Converts to this type from the input type.
sourceimpl Hash for ClientSecret
impl Hash for ClientSecret
sourceimpl Ord for ClientSecret
impl Ord for ClientSecret
sourceimpl<'_> PartialEq<&ClientSecret> for OwnedClientSecret
impl<'_> PartialEq<&ClientSecret> for OwnedClientSecret
sourceimpl<'_> PartialEq<&str> for ClientSecret
impl<'_> PartialEq<&str> for ClientSecret
sourceimpl<'_> PartialEq<Box<ClientSecret, Global>> for &ClientSecret
impl<'_> PartialEq<Box<ClientSecret, Global>> for &ClientSecret
sourceimpl PartialEq<Box<ClientSecret, Global>> for ClientSecret
impl PartialEq<Box<ClientSecret, Global>> for ClientSecret
sourceimpl<'_> PartialEq<ClientSecret> for &str
impl<'_> PartialEq<ClientSecret> for &str
sourceimpl PartialEq<ClientSecret> for OwnedClientSecret
impl PartialEq<ClientSecret> for OwnedClientSecret
sourceimpl PartialEq<ClientSecret> for ClientSecret
impl PartialEq<ClientSecret> for ClientSecret
sourcefn eq(&self, other: &ClientSecret) -> bool
fn eq(&self, other: &ClientSecret) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ClientSecret) -> bool
fn ne(&self, other: &ClientSecret) -> bool
This method tests for !=
.
sourceimpl PartialEq<ClientSecret> for str
impl PartialEq<ClientSecret> for str
sourceimpl<'_> PartialEq<OwnedClientSecret> for &ClientSecret
impl<'_> PartialEq<OwnedClientSecret> for &ClientSecret
sourceimpl PartialEq<OwnedClientSecret> for ClientSecret
impl PartialEq<OwnedClientSecret> for ClientSecret
sourceimpl PartialEq<String> for ClientSecret
impl PartialEq<String> for ClientSecret
sourceimpl PartialEq<str> for ClientSecret
impl PartialEq<str> for ClientSecret
sourceimpl PartialOrd<ClientSecret> for ClientSecret
impl PartialOrd<ClientSecret> for ClientSecret
sourcefn partial_cmp(&self, other: &ClientSecret) -> Option<Ordering>
fn partial_cmp(&self, other: &ClientSecret) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
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 · sourcefn le(&self, other: &Rhs) -> bool
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
sourceimpl Serialize for ClientSecret
impl Serialize for ClientSecret
sourcefn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
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
sourceimpl ToOwned for ClientSecret
impl ToOwned for ClientSecret
type Owned = OwnedClientSecret
type Owned = OwnedClientSecret
The resulting type after obtaining ownership.
sourcefn to_owned(&self) -> <ClientSecret as ToOwned>::Owned
fn to_owned(&self) -> <ClientSecret as ToOwned>::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · sourcefn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<'a> TryFrom<&'a str> for &'a ClientSecret
impl<'a> TryFrom<&'a str> for &'a ClientSecret
impl Eq for ClientSecret
impl StructuralEq for ClientSecret
impl StructuralPartialEq for ClientSecret
Auto Trait Implementations
impl RefUnwindSafe for ClientSecret
impl Send for ClientSecret
impl !Sized for ClientSecret
impl Sync for ClientSecret
impl Unpin for ClientSecret
impl UnwindSafe for ClientSecret
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.