#[repr(i64)]pub enum EventErrorStatus {
Unknown = 0,
Forbidden = 1,
Loss = 2,
}Variants§
Unknown = 0
Unknown or unspecified error.
Forbidden = 1
Access forbidden.
Loss = 2
Server-side event-loss, e.g. a buffer ran out of capacity. This does not account for
additional losses that may happen between the TrailBase server and the client. This
needs to be determined client-side based on event seq numbers.
Trait Implementations§
Source§impl Clone for EventErrorStatus
impl Clone for EventErrorStatus
Source§fn clone(&self) -> EventErrorStatus
fn clone(&self) -> EventErrorStatus
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 moreSource§impl Debug for EventErrorStatus
impl Debug for EventErrorStatus
Source§impl<'de> Deserialize<'de> for EventErrorStatus
impl<'de> Deserialize<'de> for EventErrorStatus
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 EventErrorStatus
impl PartialEq for EventErrorStatus
Source§impl Serialize for EventErrorStatus
impl Serialize for EventErrorStatus
impl Copy for EventErrorStatus
impl StructuralPartialEq for EventErrorStatus
Auto Trait Implementations§
impl Freeze for EventErrorStatus
impl RefUnwindSafe for EventErrorStatus
impl Send for EventErrorStatus
impl Sync for EventErrorStatus
impl Unpin for EventErrorStatus
impl UnsafeUnpin for EventErrorStatus
impl UnwindSafe for EventErrorStatus
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