Struct rabbitmq_stream_protocol::commands::open::OpenResponse
source · [−]pub struct OpenResponse {
pub connection_properties: HashMap<String, String>,
/* private fields */
}
Fields
connection_properties: HashMap<String, String>
Implementations
sourceimpl OpenResponse
impl OpenResponse
sourcepub fn connection_properties(&self) -> &HashMap<String, String>
pub fn connection_properties(&self) -> &HashMap<String, String>
Get a reference to the open response’s connection properties.
Trait Implementations
sourceimpl Debug for OpenResponse
impl Debug for OpenResponse
sourceimpl Decoder for OpenResponse
impl Decoder for OpenResponse
sourceimpl FromResponse for OpenResponse
impl FromResponse for OpenResponse
fn from_response(response: Response) -> Option<Self>
sourceimpl PartialEq<OpenResponse> for OpenResponse
impl PartialEq<OpenResponse> for OpenResponse
sourcefn eq(&self, other: &OpenResponse) -> bool
fn eq(&self, other: &OpenResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &OpenResponse) -> bool
fn ne(&self, other: &OpenResponse) -> bool
This method tests for !=
.
impl StructuralPartialEq for OpenResponse
Auto Trait Implementations
impl RefUnwindSafe for OpenResponse
impl Send for OpenResponse
impl Sync for OpenResponse
impl Unpin for OpenResponse
impl UnwindSafe for OpenResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more