#[non_exhaustive]pub struct ResponseSteerFailedEvent {
pub steer: ResponseSteerFailure,
pub error: ResponseSteerError,
pub sequence_number: Option<u64>,
pub stream_id: Option<String>,
pub rest: Rest,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.steer: ResponseSteerFailure§error: ResponseSteerError§sequence_number: Option<u64>§stream_id: Option<String>§rest: RestImplementations§
Trait Implementations§
Source§impl Clone for ResponseSteerFailedEvent
impl Clone for ResponseSteerFailedEvent
Source§impl Debug for ResponseSteerFailedEvent
impl Debug for ResponseSteerFailedEvent
Source§impl<'de> Deserialize<'de> for ResponseSteerFailedEvent
impl<'de> Deserialize<'de> for ResponseSteerFailedEvent
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 ResponseSteerFailedEvent
impl PartialEq for ResponseSteerFailedEvent
Source§impl Serialize for ResponseSteerFailedEvent
impl Serialize for ResponseSteerFailedEvent
impl StructuralPartialEq for ResponseSteerFailedEvent
Auto Trait Implementations§
impl Freeze for ResponseSteerFailedEvent
impl RefUnwindSafe for ResponseSteerFailedEvent
impl Send for ResponseSteerFailedEvent
impl Sync for ResponseSteerFailedEvent
impl Unpin for ResponseSteerFailedEvent
impl UnsafeUnpin for ResponseSteerFailedEvent
impl UnwindSafe for ResponseSteerFailedEvent
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