pub enum AlterSubscriptionType {
ALTER_SUBSCRIPTION_OPTIONS = 0,
ALTER_SUBSCRIPTION_CONNECTION = 1,
ALTER_SUBSCRIPTION_SET_PUBLICATION = 2,
ALTER_SUBSCRIPTION_ADD_PUBLICATION = 3,
ALTER_SUBSCRIPTION_DROP_PUBLICATION = 4,
ALTER_SUBSCRIPTION_REFRESH = 5,
ALTER_SUBSCRIPTION_ENABLED = 6,
ALTER_SUBSCRIPTION_SKIP = 7,
}
Variants§
ALTER_SUBSCRIPTION_OPTIONS = 0
ALTER_SUBSCRIPTION_CONNECTION = 1
ALTER_SUBSCRIPTION_SET_PUBLICATION = 2
ALTER_SUBSCRIPTION_ADD_PUBLICATION = 3
ALTER_SUBSCRIPTION_DROP_PUBLICATION = 4
ALTER_SUBSCRIPTION_REFRESH = 5
ALTER_SUBSCRIPTION_ENABLED = 6
ALTER_SUBSCRIPTION_SKIP = 7
Trait Implementations§
Source§impl Clone for AlterSubscriptionType
impl Clone for AlterSubscriptionType
Source§fn clone(&self) -> AlterSubscriptionType
fn clone(&self) -> AlterSubscriptionType
Returns a copy 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 AlterSubscriptionType
impl Debug for AlterSubscriptionType
Source§impl<'de> Deserialize<'de> for AlterSubscriptionType
impl<'de> Deserialize<'de> for AlterSubscriptionType
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 AlterSubscriptionType
impl PartialEq for AlterSubscriptionType
impl Copy for AlterSubscriptionType
impl Eq for AlterSubscriptionType
impl StructuralPartialEq for AlterSubscriptionType
Auto Trait Implementations§
impl Freeze for AlterSubscriptionType
impl RefUnwindSafe for AlterSubscriptionType
impl Send for AlterSubscriptionType
impl Sync for AlterSubscriptionType
impl Unpin for AlterSubscriptionType
impl UnwindSafe for AlterSubscriptionType
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