[][src]Struct dbcrossbarlib::SharedArguments

pub struct SharedArguments<S: ArgumentState> { /* fields omitted */ }

Arguments used by both the data source and destination.

Implementations

impl<S: ArgumentState> SharedArguments<S>[src]

pub fn max_streams(&self) -> usize[src]

How many concurrent data streams should we attempt to process at once?

This is available even for unvalidated arguments because it's used by our top-level code as well as some of the individual drivers.

impl SharedArguments<Unverified>[src]

pub fn new(
    schema: Table,
    temporary_storage: TemporaryStorage,
    max_streams: usize
) -> Self
[src]

Create a new SharedArguments structure.

pub fn verify(self, _features: Features) -> Result<SharedArguments<Verified>>[src]

Verify that this structure only contains supported arguments. This uses the type state pattern to keep track of whether our arguments have been verified to be supported.

impl SharedArguments<Verified>[src]

pub fn schema(&self) -> &Table[src]

Get the table scheme used for this transfer.

pub fn temporary_storage(&self) -> &TemporaryStorage[src]

Get the temporary storage available for use by this transfer.

Trait Implementations

impl<S: Clone + ArgumentState> Clone for SharedArguments<S>[src]

impl<S: Debug + ArgumentState> Debug for SharedArguments<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for SharedArguments<S> where
    S: RefUnwindSafe

impl<S> Send for SharedArguments<S> where
    S: Send

impl<S> Sync for SharedArguments<S> where
    S: Sync

impl<S> Unpin for SharedArguments<S> where
    S: Unpin

impl<S> UnwindSafe for SharedArguments<S> where
    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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,