pub struct ChapterImagePushEntry<R> { /* private fields */ }Implementations§
Source§impl<R> ChapterImagePushEntry<R>
impl<R> ChapterImagePushEntry<R>
pub fn new(id: Uuid, filename: String, reader: R) -> ChapterImagePushEntry<R>
pub fn id<I>(self, id: I) -> ChapterImagePushEntry<R>
pub fn filename<F>(self, filename: F) -> ChapterImagePushEntry<R>
pub fn reader(self, reader: R) -> ChapterImagePushEntry<R>
pub fn mode<M>(self, mode: M) -> ChapterImagePushEntry<R>
Trait Implementations§
Source§impl<R> Clone for ChapterImagePushEntry<R>where
R: Clone,
impl<R> Clone for ChapterImagePushEntry<R>where
R: Clone,
Source§fn clone(&self) -> ChapterImagePushEntry<R>
fn clone(&self) -> ChapterImagePushEntry<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R> Debug for ChapterImagePushEntry<R>where
R: Debug,
impl<R> Debug for ChapterImagePushEntry<R>where
R: Debug,
impl<R> Eq for ChapterImagePushEntry<R>where
R: Eq,
Source§impl<R> Ord for ChapterImagePushEntry<R>where
R: Ord,
impl<R> Ord for ChapterImagePushEntry<R>where
R: Ord,
Source§fn cmp(&self, other: &ChapterImagePushEntry<R>) -> Ordering
fn cmp(&self, other: &ChapterImagePushEntry<R>) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<R> PartialEq for ChapterImagePushEntry<R>where
R: PartialEq,
impl<R> PartialEq for ChapterImagePushEntry<R>where
R: PartialEq,
Source§fn eq(&self, other: &ChapterImagePushEntry<R>) -> bool
fn eq(&self, other: &ChapterImagePushEntry<R>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<R> PartialOrd for ChapterImagePushEntry<R>where
R: PartialOrd,
impl<R> PartialOrd for ChapterImagePushEntry<R>where
R: PartialOrd,
Source§impl<R> Push<ChapterImagePushEntry<R>> for DirsOptionswhere
R: Read,
impl<R> Push<ChapterImagePushEntry<R>> for DirsOptionswhere
R: Read,
impl<R> StructuralPartialEq for ChapterImagePushEntry<R>
Auto Trait Implementations§
impl<R> Freeze for ChapterImagePushEntry<R>where
R: Freeze,
impl<R> RefUnwindSafe for ChapterImagePushEntry<R>where
R: RefUnwindSafe,
impl<R> Send for ChapterImagePushEntry<R>where
R: Send,
impl<R> Sync for ChapterImagePushEntry<R>where
R: Sync,
impl<R> Unpin for ChapterImagePushEntry<R>where
R: Unpin,
impl<R> UnsafeUnpin for ChapterImagePushEntry<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for ChapterImagePushEntry<R>where
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more