[][src]Struct tbot::types::Voice

#[non_exhaustive]
pub struct Voice {
    pub file_id: Id,
    pub file_unique_id: String,
    pub duration: u32,
    pub mime_type: Option<String>,
    pub file_size: Option<u32>,
}

Represents a Voice.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
file_id: Id

The file ID of the voice.

file_unique_id: String

The unique ID of the voice.

duration: u32

The duration of the voice.

mime_type: Option<String>

The MIME type of the voice.

file_size: Option<u32>

The file size of the voice.

Trait Implementations

impl AsFileId for Voice[src]

impl Clone for Voice[src]

impl Debug for Voice[src]

impl<'de> Deserialize<'de> for Voice[src]

impl Eq for Voice[src]

impl Hash for Voice[src]

impl PartialEq<Voice> for Voice[src]

impl StructuralEq for Voice[src]

impl StructuralPartialEq for Voice[src]

Auto Trait Implementations

impl RefUnwindSafe for Voice

impl Send for Voice

impl Sync for Voice

impl Unpin for Voice

impl UnwindSafe for Voice

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.