Enum gfx::CopyError [−][src]
pub enum CopyError<S, D> { OutOfSrcBounds { size: S, copy_end: S, }, OutOfDstBounds { size: D, copy_end: D, }, Overlap { src_offset: usize, dst_offset: usize, size: usize, }, NoSrcBindFlag, NoDstBindFlag, }
An error occuring in memory copies.
Variants
Trait Implementations
impl<S: Clone, D: Clone> Clone for CopyError<S, D>
[src][+]
impl<S: Debug, D: Debug> Debug for CopyError<S, D>
[src][+]
impl<S, D> Display for CopyError<S, D> where
S: Debug + Display,
D: Debug + Display,
[src][+]
S: Debug + Display,
D: Debug + Display,
impl<S, D> Error for CopyError<S, D> where
S: Debug + Display,
D: Debug + Display,
[src][+]
S: Debug + Display,
D: Debug + Display,
impl<S: PartialEq, D: PartialEq> PartialEq<CopyError<S, D>> for CopyError<S, D>
[src][+]
impl<S, D> StructuralPartialEq for CopyError<S, D>
[src]
Auto Trait Implementations
impl<S, D> RefUnwindSafe for CopyError<S, D> where
D: RefUnwindSafe,
S: RefUnwindSafe,
D: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, D> Send for CopyError<S, D> where
D: Send,
S: Send,
D: Send,
S: Send,
impl<S, D> Sync for CopyError<S, D> where
D: Sync,
S: Sync,
D: Sync,
S: Sync,
impl<S, D> Unpin for CopyError<S, D> where
D: Unpin,
S: Unpin,
D: Unpin,
S: Unpin,
impl<S, D> UnwindSafe for CopyError<S, D> where
D: UnwindSafe,
S: UnwindSafe,
D: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,