Struct messagebird_async::sms::AccessKey[][src]

pub struct AccessKey(_);

API Token Access

They can be managed under https://dashboard.messagebird.com/en/developers/access

Methods

impl AccessKey
[src]

Methods from Deref<Target = String>

Extracts a string slice containing the entire string.

Examples

Basic usage:

let s = String::from("foo");

assert_eq!("foo", s.as_str());

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

assert!(s.capacity() >= 10);

Important traits for &'a [u8]

Returns a byte slice of this String's contents.

The inverse of this method is from_utf8.

Examples

Basic usage:

let s = String::from("hello");

assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());

Returns the length of this String, in bytes.

Examples

Basic usage:

let a = String::from("foo");

assert_eq!(a.len(), 3);

Returns true if this String has a length of zero.

Returns false otherwise.

Examples

Basic usage:

let mut v = String::new();
assert!(v.is_empty());

v.push('a');
assert!(!v.is_empty());

Trait Implementations

impl Debug for AccessKey
[src]

Formats the value using the given formatter. Read more

impl Clone for AccessKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Deref for AccessKey
[src]

The resulting type after dereferencing.

Dereferences the value.

impl FromStr for AccessKey
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl From<String> for AccessKey
[src]

Performs the conversion.

impl Display for AccessKey
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for AccessKey

impl Sync for AccessKey