pub struct MatchingSymbolsRequest {
pub req_id: i32,
pub pattern: String,
}Expand description
Matching-symbols request.
Fields§
§req_id: i32Request id.
pattern: StringSearch pattern.
Trait Implementations§
Source§impl Clone for MatchingSymbolsRequest
impl Clone for MatchingSymbolsRequest
Source§fn clone(&self) -> MatchingSymbolsRequest
fn clone(&self) -> MatchingSymbolsRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MatchingSymbolsRequest
impl Debug for MatchingSymbolsRequest
Source§impl EncodableRequest for MatchingSymbolsRequest
impl EncodableRequest for MatchingSymbolsRequest
Source§fn encode_fields(&self, fields: &mut FieldSink) -> TwsApiResult<()>
fn encode_fields(&self, fields: &mut FieldSink) -> TwsApiResult<()>
Appends fields after the message id.
Source§fn encode_protobuf(&self) -> TwsApiResult<Option<Vec<u8>>>
fn encode_protobuf(&self) -> TwsApiResult<Option<Vec<u8>>>
Encodes this request as protobuf when implemented for the request type.
Source§fn encode_fields_for_server_version(
&self,
fields: &mut FieldSink,
_server_version: i32,
) -> TwsApiResult<()>
fn encode_fields_for_server_version( &self, fields: &mut FieldSink, _server_version: i32, ) -> TwsApiResult<()>
Appends fields for a negotiated server version.
impl Eq for MatchingSymbolsRequest
Source§impl PartialEq for MatchingSymbolsRequest
impl PartialEq for MatchingSymbolsRequest
impl StructuralPartialEq for MatchingSymbolsRequest
Auto Trait Implementations§
impl Freeze for MatchingSymbolsRequest
impl RefUnwindSafe for MatchingSymbolsRequest
impl Send for MatchingSymbolsRequest
impl Sync for MatchingSymbolsRequest
impl Unpin for MatchingSymbolsRequest
impl UnsafeUnpin for MatchingSymbolsRequest
impl UnwindSafe for MatchingSymbolsRequest
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