pub struct RafStartInvocation {
pub start_time: Option<Time>,
pub stop_time: Option<Time>,
pub quality: RequestedFrameQuality,
pub credentials: Option<Credentials>,
}Expand description
RAF Start invocation PDU.
Fields§
§start_time: Option<Time>Start time — None means “start from now”.
stop_time: Option<Time>Stop time — None means “until stopped”.
quality: RequestedFrameQualityRequested frame quality filter.
credentials: Option<Credentials>Optional authentication credentials.
Implementations§
Trait Implementations§
Source§impl Clone for RafStartInvocation
impl Clone for RafStartInvocation
Source§fn clone(&self) -> RafStartInvocation
fn clone(&self) -> RafStartInvocation
Returns a duplicate of the value. Read more
1.0.0 · 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 RafStartInvocation
impl Debug for RafStartInvocation
Source§impl PartialEq for RafStartInvocation
impl PartialEq for RafStartInvocation
impl Copy for RafStartInvocation
impl Eq for RafStartInvocation
impl StructuralPartialEq for RafStartInvocation
Auto Trait Implementations§
impl Freeze for RafStartInvocation
impl RefUnwindSafe for RafStartInvocation
impl Send for RafStartInvocation
impl Sync for RafStartInvocation
impl Unpin for RafStartInvocation
impl UnsafeUnpin for RafStartInvocation
impl UnwindSafe for RafStartInvocation
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