[][src]Struct sophia_api::quad::streaming_mode::StreamedQuad

pub struct StreamedQuad<'a, T: QuadStreamingMode> { /* fields omitted */ }

See module documentation.

Implementations

impl<'a, T> StreamedQuad<'a, T> where
    T: QuadStreamingMode
[src]

pub unsafe fn wrap(wrapped: T::UnsafeQuad) -> Self[src]

Raw constructor

Safety

This must only be used if the unsafe quad wrapped is guaranteed to live for at least 'a (the lifetime of this streamed quad).

impl<'a, Q> StreamedQuad<'a, ByValue<Q>> where
    Q: Quad
[src]

pub fn by_value(quad: Q) -> Self[src]

impl<'a, Q> StreamedQuad<'a, ByRef<Q>> where
    Q: Quad
[src]

pub fn by_ref(quad: &'a Q) -> Self[src]

impl<'a, T: ?Sized> StreamedQuad<'a, ByTermRefs<T>> where
    T: TTerm
[src]

pub fn by_term_refs(s: &'a T, p: &'a T, o: &'a T, g: Option<&'a T>) -> Self[src]

impl<'a, T> StreamedQuad<'a, T> where
    T: ScopedQuadMode<'a>, 
[src]

pub fn scoped(quad: T::SourceQuad) -> Self[src]

Trait Implementations

impl<'a, T: Debug + QuadStreamingMode> Debug for StreamedQuad<'a, T> where
    T::UnsafeQuad: Debug,
    T::UnsafeQuad: Debug
[src]

impl<'a, T> Quad for StreamedQuad<'a, T> where
    T: QuadStreamingMode
[src]

type Term = <T::UnsafeQuad as UnsafeQuad>::Term

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for StreamedQuad<'a, T> where
    <T as QuadStreamingMode>::UnsafeQuad: RefUnwindSafe

impl<'a, T> Send for StreamedQuad<'a, T> where
    <T as QuadStreamingMode>::UnsafeQuad: Send + Sync

impl<'a, T> Sync for StreamedQuad<'a, T> where
    <T as QuadStreamingMode>::UnsafeQuad: Sync

impl<'a, T> Unpin for StreamedQuad<'a, T> where
    <T as QuadStreamingMode>::UnsafeQuad: Unpin

impl<'a, T> UnwindSafe for StreamedQuad<'a, T> where
    <T as QuadStreamingMode>::UnsafeQuad: RefUnwindSafe + 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.