pub struct ShareAcknowledgeResponseV2 {
pub throttle_time_ms: i32,
pub error_code: i16,
pub error_message: Option<String>,
pub acquisition_lock_timeout_ms: i32,
pub responses: Vec<ShareAcknowledgeTopicResponseV1>,
pub node_endpoints: Vec<ShareNodeEndpointV1>,
}Expand description
ShareAcknowledge v2 response with the current acquisition lock timeout.
Fields§
§throttle_time_ms: i32§error_code: i16§error_message: Option<String>§acquisition_lock_timeout_ms: i32§responses: Vec<ShareAcknowledgeTopicResponseV1>§node_endpoints: Vec<ShareNodeEndpointV1>Implementations§
Sourcepub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
pub fn decode_body(decoder: &mut Decoder<'_>) -> Result<Self>
Decodes the flexible response body after the response header.
Trait Implementations§
Source§fn clone(&self) -> ShareAcknowledgeResponseV2
fn clone(&self) -> ShareAcknowledgeResponseV2
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 moreAuto Trait Implementations§
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