[][src]Struct syncthing::Connection

pub struct Connection<C> { /* fields omitted */ }

Methods

impl<C> Connection<C>[src]

pub fn new(client: C, api_key: impl Into<String>) -> Result<Self, ParseError>[src]

pub fn new_with_base_url(
    client: C,
    api_key: impl Into<String>,
    base_url: impl AsRef<str>
) -> Result<Self, ParseError>
[src]

impl<C: HttpClient> Connection<C>[src]

pub async fn get_events<'_, '_>(
    &'_ self,
    events: Option<&'_ [EventType]>,
    since: Option<u64>,
    limit: Option<u64>
) -> Fallible<Vec<Event>>
[src]

pub fn subscribe(self, events: Option<Vec<EventType>>) -> EventStream<C>[src]

pub async fn get_system_log<'_>(&'_ self) -> Fallible<SystemLog>[src]

pub async fn get_system_ping<'_>(&'_ self) -> Fallible<SystemPing>[src]

pub async fn get_system_version<'_>(&'_ self) -> Fallible<SystemVersion>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for Connection<C> where
    C: RefUnwindSafe

impl<C> Send for Connection<C> where
    C: Send

impl<C> Sync for Connection<C> where
    C: Sync

impl<C> Unpin for Connection<C> where
    C: Unpin

impl<C> UnwindSafe for Connection<C> where
    C: UnwindSafe

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, 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.