pub enum RequestType {
Welcome = 0,
Prefix = 1,
Call = 2,
CallResult = 3,
CallError = 4,
Subscribe = 5,
Unsubscribe = 6,
Publish = 7,
Event = 8,
}
Expand description
Different LCU websocket request types
Variants§
Welcome = 0
Prefix = 1
Call = 2
CallResult = 3
CallError = 4
Subscribe = 5
Unsubscribe = 6
Publish = 7
Event = 8
Trait Implementations§
Source§impl Clone for RequestType
impl Clone for RequestType
Source§fn clone(&self) -> RequestType
fn clone(&self) -> RequestType
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 PartialEq for RequestType
impl PartialEq for RequestType
impl StructuralPartialEq for RequestType
Auto Trait Implementations§
impl Freeze for RequestType
impl RefUnwindSafe for RequestType
impl Send for RequestType
impl Sync for RequestType
impl Unpin for RequestType
impl UnwindSafe for RequestType
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