pub struct SuffixInfo<Repr> {
pub suffix: Repr,
pub compressed: bool,
}
Expand description
Used mostly internally. Info about suffix + compressed state.
Fields§
§suffix: Repr
Suffix
compressed: bool
Whether there is a .gz
suffix after the suffix
Implementations§
Source§impl<Repr: Representation> SuffixInfo<Repr>
impl<Repr: Representation> SuffixInfo<Repr>
Trait Implementations§
Source§impl<Repr: Clone> Clone for SuffixInfo<Repr>
impl<Repr: Clone> Clone for SuffixInfo<Repr>
Source§fn clone(&self) -> SuffixInfo<Repr>
fn clone(&self) -> SuffixInfo<Repr>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<Repr: Debug> Debug for SuffixInfo<Repr>
impl<Repr: Debug> Debug for SuffixInfo<Repr>
Source§impl<Repr: Representation> Ord for SuffixInfo<Repr>
impl<Repr: Representation> Ord for SuffixInfo<Repr>
Source§impl<R: PartialEq> PartialEq for SuffixInfo<R>
impl<R: PartialEq> PartialEq for SuffixInfo<R>
Source§impl<Repr: Representation> PartialOrd for SuffixInfo<Repr>
impl<Repr: Representation> PartialOrd for SuffixInfo<Repr>
impl<Repr: Eq> Eq for SuffixInfo<Repr>
Auto Trait Implementations§
impl<Repr> Freeze for SuffixInfo<Repr>where
Repr: Freeze,
impl<Repr> RefUnwindSafe for SuffixInfo<Repr>where
Repr: RefUnwindSafe,
impl<Repr> Send for SuffixInfo<Repr>where
Repr: Send,
impl<Repr> Sync for SuffixInfo<Repr>where
Repr: Sync,
impl<Repr> Unpin for SuffixInfo<Repr>where
Repr: Unpin,
impl<Repr> UnwindSafe for SuffixInfo<Repr>where
Repr: 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