pub enum CreateStreamErrorKind {
EmptyStreamName,
InvalidStreamName,
DomainAndExternalSet,
JetStreamUnavailable,
JetStream(Error),
TimedOut,
Response,
ResponseParse,
}
Variants§
EmptyStreamName
InvalidStreamName
DomainAndExternalSet
JetStream(Error)
TimedOut
Response
ResponseParse
Trait Implementations§
source§impl Clone for CreateStreamErrorKind
impl Clone for CreateStreamErrorKind
source§fn clone(&self) -> CreateStreamErrorKind
fn clone(&self) -> CreateStreamErrorKind
Returns a copy 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 moresource§impl Debug for CreateStreamErrorKind
impl Debug for CreateStreamErrorKind
source§impl Display for CreateStreamErrorKind
impl Display for CreateStreamErrorKind
source§impl PartialEq for CreateStreamErrorKind
impl PartialEq for CreateStreamErrorKind
source§fn eq(&self, other: &CreateStreamErrorKind) -> bool
fn eq(&self, other: &CreateStreamErrorKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateStreamErrorKind
Auto Trait Implementations§
impl RefUnwindSafe for CreateStreamErrorKind
impl Send for CreateStreamErrorKind
impl Sync for CreateStreamErrorKind
impl Unpin for CreateStreamErrorKind
impl UnwindSafe for CreateStreamErrorKind
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