pub enum SecurityType {
None,
Trade,
UserData,
UserStream,
}Variants§
None
Endpoint can be accessed freely.
Trade
Endpoint requires sending a valid API-Key and signature.
UserData
Endpoint requires sending a valid API-Key and signature.
UserStream
Endpoint requires sending a valid API-Key.
Trait Implementations§
Source§impl Debug for SecurityType
impl Debug for SecurityType
Source§impl<'de> Deserialize<'de> for SecurityType
impl<'de> Deserialize<'de> for SecurityType
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 SecurityType
impl PartialEq for SecurityType
Source§impl Serialize for SecurityType
impl Serialize for SecurityType
impl StructuralPartialEq for SecurityType
Auto Trait Implementations§
impl Freeze for SecurityType
impl RefUnwindSafe for SecurityType
impl Send for SecurityType
impl Sync for SecurityType
impl Unpin for SecurityType
impl UnwindSafe for SecurityType
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