[][src]Struct threema::Threema

pub struct Threema {
    pub nick: Option<String>,
    // some fields omitted
}

Fields

nick: Option<String>

Implementations

impl Threema[src]

pub fn new(id: ThreemaID, private_key: &[u8]) -> Result<Self, Error>[src]

pub fn from_backup(data: &str, password: &str) -> Result<Self, Error>[src]

pub fn connect(&mut self) -> Result<(), Error>[src]

pub fn send_text_message(
    &mut self,
    receiver: ThreemaID,
    message: String
) -> Result<MessageID, Error>
[src]

pub fn receive_packet(&mut self) -> Result<(Packet, Vec<u8>), Error>[src]

pub fn receive(&mut self) -> Result<ServerMessage, Error>[src]

Auto Trait Implementations

impl RefUnwindSafe for Threema

impl Send for Threema

impl Sync for Threema

impl Unpin for Threema

impl UnwindSafe for Threema

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.