pub struct CaptureSelection {
pub id: String,
pub path: String,
pub schedule: CaptureSchedule,
pub slices: Vec<CaptureSlice>,
pub transform: CaptureTransform,
}Expand description
One exact path, schedule, axis selection, and transformation.
Fields§
§id: StringUnique caller identity, allowing several transforms at one observation point.
path: StringExact observation selector in the retained catalog.
schedule: CaptureSchedulePhase, frequency, and prediction-range selection.
slices: Vec<CaptureSlice>Semantic axis selection applied before the transform.
transform: CaptureTransformRequested native transformation.
Trait Implementations§
Source§impl Clone for CaptureSelection
impl Clone for CaptureSelection
Source§fn clone(&self) -> CaptureSelection
fn clone(&self) -> CaptureSelection
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 CaptureSelection
impl Debug for CaptureSelection
Source§impl<'de> Deserialize<'de> for CaptureSelection
impl<'de> Deserialize<'de> for CaptureSelection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CaptureSelection
impl PartialEq for CaptureSelection
Source§impl Serialize for CaptureSelection
impl Serialize for CaptureSelection
impl StructuralPartialEq for CaptureSelection
Auto Trait Implementations§
impl Freeze for CaptureSelection
impl RefUnwindSafe for CaptureSelection
impl Send for CaptureSelection
impl Sync for CaptureSelection
impl Unpin for CaptureSelection
impl UnsafeUnpin for CaptureSelection
impl UnwindSafe for CaptureSelection
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