pub struct MessageBusSubscriptionOptions {
pub topic: String,
pub subscription_id: String,
pub from: MessageBusSubscriptionFrom,
pub name: Option<String>,
}Expand description
MessageBusSubscriptionOptions data container.
Fields§
§topic: Stringtopic field for topic.
subscription_id: Stringsubscription_id field for subscription id.
from: MessageBusSubscriptionFromfrom field for from.
name: Option<String>name field for name.
Implementations§
Trait Implementations§
Source§impl Clone for MessageBusSubscriptionOptions
impl Clone for MessageBusSubscriptionOptions
Source§fn clone(&self) -> MessageBusSubscriptionOptions
fn clone(&self) -> MessageBusSubscriptionOptions
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 moreAuto Trait Implementations§
impl Freeze for MessageBusSubscriptionOptions
impl RefUnwindSafe for MessageBusSubscriptionOptions
impl Send for MessageBusSubscriptionOptions
impl Sync for MessageBusSubscriptionOptions
impl Unpin for MessageBusSubscriptionOptions
impl UnsafeUnpin for MessageBusSubscriptionOptions
impl UnwindSafe for MessageBusSubscriptionOptions
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