pub struct SecurityBarsResponse {
pub count: u16,
pub list: Vec<SecurityBar>,
pub is_index: bool,
pub category: u16,
/* private fields */
}Fields§
§count: u16§list: Vec<SecurityBar>§is_index: bool§category: u16Implementations§
Trait Implementations§
Source§impl Clone for SecurityBarsResponse
impl Clone for SecurityBarsResponse
Source§fn clone(&self) -> SecurityBarsResponse
fn clone(&self) -> SecurityBarsResponse
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 SecurityBarsResponse
impl Debug for SecurityBarsResponse
Source§impl Response for SecurityBarsResponse
impl Response for SecurityBarsResponse
fn header(&self) -> &ResponseHeader
fn header_mut(&mut self) -> &mut ResponseHeader
fn deserialize_body(&mut self, data: &[u8]) -> Result<(), DeserializeError>
fn body_string(&self) -> String
fn header_deserialize(&mut self, header: &[u8]) -> Result<(), DeserializeError>
fn header_debug_string(&self) -> String
fn zip_size(&self) -> usize
fn deserialize(&mut self, data: &[u8]) -> Result<(), DeserializeError>
fn to_string(&self) -> String
fn command(&self) -> &'static str
Auto Trait Implementations§
impl Freeze for SecurityBarsResponse
impl RefUnwindSafe for SecurityBarsResponse
impl Send for SecurityBarsResponse
impl Sync for SecurityBarsResponse
impl Unpin for SecurityBarsResponse
impl UnwindSafe for SecurityBarsResponse
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