pub struct MvActuationResponse {Show 14 fields
pub id: i64,
pub sequence: i64,
pub kind: MvActuationKind,
pub commanded_at: DateTime<Utc>,
pub target_mv: f32,
pub previous_commanded_mv: Option<f32>,
pub tolerance: f32,
pub confirmation_due_at: DateTime<Utc>,
pub last_checked_at: Option<DateTime<Utc>>,
pub readback_mv: Option<f32>,
pub readback_quality: Option<SampleQuality>,
pub attempt_count: i64,
pub status: MvActuationStatus,
pub detail: Option<String>,
}Expand description
Local projection of one accepted OPC DA manipulated-variable command and its independent
live readback evidence. Commanded MV samples remain in SampleResponse; this audit trail
is the only response surface that reports measured MV values.
Fields§
§id: i64§sequence: i64§kind: MvActuationKind§commanded_at: DateTime<Utc>§target_mv: f32§previous_commanded_mv: Option<f32>§tolerance: f32§confirmation_due_at: DateTime<Utc>§last_checked_at: Option<DateTime<Utc>>§readback_mv: Option<f32>§readback_quality: Option<SampleQuality>§attempt_count: i64§status: MvActuationStatus§detail: Option<String>Trait Implementations§
Source§impl ComposeSchema for MvActuationResponse
impl ComposeSchema for MvActuationResponse
Source§impl Debug for MvActuationResponse
impl Debug for MvActuationResponse
Source§impl From<&TuneMvActuationRow> for MvActuationResponse
impl From<&TuneMvActuationRow> for MvActuationResponse
Source§fn from(row: &TuneMvActuationRow) -> Self
fn from(row: &TuneMvActuationRow) -> Self
Converts to this type from the input type.
Source§impl Serialize for MvActuationResponse
impl Serialize for MvActuationResponse
Auto Trait Implementations§
impl Freeze for MvActuationResponse
impl RefUnwindSafe for MvActuationResponse
impl Send for MvActuationResponse
impl Sync for MvActuationResponse
impl Unpin for MvActuationResponse
impl UnsafeUnpin for MvActuationResponse
impl UnwindSafe for MvActuationResponse
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].