pub struct CreateReq {
pub name: String,
pub symbols: Vec<String>,
/* private fields */
}Expand description
A request to create a watch list.
Fields§
§name: StringThe watchlist’s name.
symbols: Vec<String>The symbols to watch.
Trait Implementations§
impl Eq for CreateReq
impl StructuralPartialEq for CreateReq
Auto Trait Implementations§
impl Freeze for CreateReq
impl RefUnwindSafe for CreateReq
impl Send for CreateReq
impl Sync for CreateReq
impl Unpin for CreateReq
impl UnwindSafe for CreateReq
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