pub enum ParamChangeValue {
Int32(i32),
Float64(f64),
Octet(String),
}Expand description
Value sent through the param change channel from control plane to data plane.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ParamChangeValue
impl Clone for ParamChangeValue
Auto Trait Implementations§
impl Freeze for ParamChangeValue
impl RefUnwindSafe for ParamChangeValue
impl Send for ParamChangeValue
impl Sync for ParamChangeValue
impl Unpin for ParamChangeValue
impl UnsafeUnpin for ParamChangeValue
impl UnwindSafe for ParamChangeValue
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