[][src]Struct ena::archiver::YotsubaArchiver

pub struct YotsubaArchiver<S, R, D: DatabaseTrait<S, R>, H: HttpClient> { /* fields omitted */ }

Implementations

impl<S, R, D, H> YotsubaArchiver<S, R, D, H> where
    R: RowTrait,
    D: DatabaseTrait<S, R>,
    H: HttpClient
[src][]

pub async fn new(db_client: D, http_client: H, config: Config) -> Self[src]

pub fn is_finished(&self) -> bool[src]

pub async fn run<'_>(&'_ self) -> Result<()>[src]

Trait Implementations

impl Archiver for YotsubaArchiver<Statement, Row, Pool, Client>[src][+]

impl Archiver for YotsubaArchiver<Statement, Row, Client, Client>[src][+]

Auto Trait Implementations

impl<S, R, D, H> RefUnwindSafe for YotsubaArchiver<S, R, D, H> where
    D: RefUnwindSafe,
    H: RefUnwindSafe,
    R: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, R, D, H> Send for YotsubaArchiver<S, R, D, H> where
    R: Send,
    S: Send

impl<S, R, D, H> Sync for YotsubaArchiver<S, R, D, H> where
    R: Sync,
    S: Sync

impl<S, R, D, H> Unpin for YotsubaArchiver<S, R, D, H> where
    D: Unpin,
    H: Unpin,
    R: Unpin,
    S: Unpin

impl<S, R, D, H> UnwindSafe for YotsubaArchiver<S, R, D, H> where
    D: UnwindSafe,
    H: UnwindSafe,
    R: UnwindSafe,
    S: 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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[+]