pub enum EnqueueLayerParamExpoOp<'a> {
LayerRef(u64, &'a Layer, &'a str, ExposureTrigger),
LayerOwned(u64, Box<Layer>, String, ExposureTrigger),
}Variants§
LayerRef(u64, &'a Layer, &'a str, ExposureTrigger)
LayerOwned(u64, Box<Layer>, String, ExposureTrigger)
Trait Implementations§
Source§impl EnqueueOperation for EnqueueLayerParamExpoOp<'_>
impl EnqueueOperation for EnqueueLayerParamExpoOp<'_>
fn as_exposure(&self) -> Option<&impl QueuedExposure<'_>>
fn into_queued_event( self, sampling_decision: EvtSamplingDecision, ) -> QueuedEvent
Source§impl<'a> QueuedExposure<'a> for EnqueueLayerParamExpoOp<'a>
impl<'a> QueuedExposure<'a> for EnqueueLayerParamExpoOp<'a>
fn create_exposure_sampling_key(&self) -> ExposureSamplingKey
fn get_rule_id_ref(&'a self) -> &'a str
fn get_extra_exposure_info_ref(&'a self) -> Option<&'a ExtraExposureInfo>
Auto Trait Implementations§
impl<'a> Freeze for EnqueueLayerParamExpoOp<'a>
impl<'a> !RefUnwindSafe for EnqueueLayerParamExpoOp<'a>
impl<'a> Send for EnqueueLayerParamExpoOp<'a>
impl<'a> Sync for EnqueueLayerParamExpoOp<'a>
impl<'a> Unpin for EnqueueLayerParamExpoOp<'a>
impl<'a> !UnwindSafe for EnqueueLayerParamExpoOp<'a>
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