#[non_exhaustive]pub enum RmsUpdateBits {
AutoLiqThresholdCurrentValue,
}Expand description
Selects which RMS fields to stream via
subscribe_account_rms_updates.
Pass one or more selectors; they are combined into the request’s
update_bits bitmask. An empty selection leaves the field off the
request.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AutoLiqThresholdCurrentValue
Stream auto_liq_threshold_current_value updates.
Implementations§
Source§impl RmsUpdateBits
impl RmsUpdateBits
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
The protobuf spelling, as the generated enum’s as_str_name writes it.
Trait Implementations§
Source§impl Clone for RmsUpdateBits
impl Clone for RmsUpdateBits
Source§fn clone(&self) -> RmsUpdateBits
fn clone(&self) -> RmsUpdateBits
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 moreimpl Copy for RmsUpdateBits
Source§impl Debug for RmsUpdateBits
impl Debug for RmsUpdateBits
Source§impl<'de> Deserialize<'de> for RmsUpdateBits
impl<'de> Deserialize<'de> for RmsUpdateBits
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 Display for RmsUpdateBits
impl Display for RmsUpdateBits
impl Eq for RmsUpdateBits
Source§impl From<RmsUpdateBits> for UpdateBits
impl From<RmsUpdateBits> for UpdateBits
Source§fn from(bits: RmsUpdateBits) -> Self
fn from(bits: RmsUpdateBits) -> Self
Converts to this type from the input type.
Source§impl Hash for RmsUpdateBits
impl Hash for RmsUpdateBits
Source§impl PartialEq for RmsUpdateBits
impl PartialEq for RmsUpdateBits
Source§impl Serialize for RmsUpdateBits
impl Serialize for RmsUpdateBits
impl StructuralPartialEq for RmsUpdateBits
Auto Trait Implementations§
impl Freeze for RmsUpdateBits
impl RefUnwindSafe for RmsUpdateBits
impl Send for RmsUpdateBits
impl Sync for RmsUpdateBits
impl Unpin for RmsUpdateBits
impl UnsafeUnpin for RmsUpdateBits
impl UnwindSafe for RmsUpdateBits
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