pub struct SeekRejection {
pub element_type: ElementType,
pub name: Arc<str>,
pub reason: SeekRejectReason,
}Expand description
One element that prevents a pipeline-wide seek.
Fields§
§element_type: ElementTypeKind of the element that rejected the check.
name: Arc<str>Caller-selected instance name of the rejecting element.
reason: SeekRejectReasonCapability that made this element incompatible with seeking.
Trait Implementations§
Source§impl Clone for SeekRejection
impl Clone for SeekRejection
Source§fn clone(&self) -> SeekRejection
fn clone(&self) -> SeekRejection
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 Debug for SeekRejection
impl Debug for SeekRejection
impl Eq for SeekRejection
Source§impl PartialEq for SeekRejection
impl PartialEq for SeekRejection
impl StructuralPartialEq for SeekRejection
Auto Trait Implementations§
impl Freeze for SeekRejection
impl RefUnwindSafe for SeekRejection
impl Send for SeekRejection
impl Sync for SeekRejection
impl Unpin for SeekRejection
impl UnsafeUnpin for SeekRejection
impl UnwindSafe for SeekRejection
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