pub struct SetPublishingModeRequest {
pub request_header: RequestHeader,
pub publishing_enabled: bool,
pub subscription_ids: Vec<u32>,
}Expand description
SetPublishingModeRequest.
Fields§
§request_header: RequestHeaderCommon request header.
publishing_enabled: boolNew publishing-enabled flag.
subscription_ids: Vec<u32>Subscriptions to apply it to.
Trait Implementations§
Source§impl Clone for SetPublishingModeRequest
impl Clone for SetPublishingModeRequest
Source§fn clone(&self) -> SetPublishingModeRequest
fn clone(&self) -> SetPublishingModeRequest
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 moreSource§impl Debug for SetPublishingModeRequest
impl Debug for SetPublishingModeRequest
Source§impl PartialEq for SetPublishingModeRequest
impl PartialEq for SetPublishingModeRequest
Source§fn eq(&self, other: &SetPublishingModeRequest) -> bool
fn eq(&self, other: &SetPublishingModeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetPublishingModeRequest
Auto Trait Implementations§
impl Freeze for SetPublishingModeRequest
impl RefUnwindSafe for SetPublishingModeRequest
impl Send for SetPublishingModeRequest
impl Sync for SetPublishingModeRequest
impl Unpin for SetPublishingModeRequest
impl UnsafeUnpin for SetPublishingModeRequest
impl UnwindSafe for SetPublishingModeRequest
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