pub struct UserAccountsResponseAllowFeatures {Show 21 fields
pub allow_crypto: Option<bool>,
pub allow_dyn_account: Option<bool>,
pub allow_event_contract: Option<bool>,
pub allow_event_trading: Option<bool>,
pub allow_fxconv: Option<bool>,
pub allow_financial_lens: Option<bool>,
pub allow_mta: Option<bool>,
pub allow_type_ahead: Option<bool>,
pub allowed_asset_types: Option<String>,
pub debug_pnl: Option<bool>,
pub lite_user: Option<bool>,
pub research: Option<bool>,
pub restrict_trade_subscription: Option<bool>,
pub show_eucost_report: Option<bool>,
pub show_gfis: Option<bool>,
pub show_impact_dashboard: Option<bool>,
pub show_tax_opt: Option<bool>,
pub show_uk_user_labels: Option<bool>,
pub show_web_news: Option<bool>,
pub side_by_side: Option<bool>,
pub snapshot_refresh_timeout: Option<i64>,
}Fields§
§allow_crypto: Option<bool>§allow_dyn_account: Option<bool>§allow_event_contract: Option<bool>§allow_event_trading: Option<bool>§allow_fxconv: Option<bool>§allow_financial_lens: Option<bool>§allow_mta: Option<bool>§allow_type_ahead: Option<bool>§allowed_asset_types: Option<String>§debug_pnl: Option<bool>§lite_user: Option<bool>§research: Option<bool>§restrict_trade_subscription: Option<bool>§show_eucost_report: Option<bool>§show_gfis: Option<bool>§show_impact_dashboard: Option<bool>§show_tax_opt: Option<bool>§show_uk_user_labels: Option<bool>§show_web_news: Option<bool>§side_by_side: Option<bool>§snapshot_refresh_timeout: Option<i64>- Example:
Some(30i64)
Trait Implementations§
Source§impl Clone for UserAccountsResponseAllowFeatures
impl Clone for UserAccountsResponseAllowFeatures
Source§fn clone(&self) -> UserAccountsResponseAllowFeatures
fn clone(&self) -> UserAccountsResponseAllowFeatures
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<'de> Deserialize<'de> for UserAccountsResponseAllowFeatures
impl<'de> Deserialize<'de> for UserAccountsResponseAllowFeatures
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 UserAccountsResponseAllowFeatures
impl PartialEq for UserAccountsResponseAllowFeatures
Source§fn eq(&self, other: &UserAccountsResponseAllowFeatures) -> bool
fn eq(&self, other: &UserAccountsResponseAllowFeatures) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UserAccountsResponseAllowFeatures
Auto Trait Implementations§
impl Freeze for UserAccountsResponseAllowFeatures
impl RefUnwindSafe for UserAccountsResponseAllowFeatures
impl Send for UserAccountsResponseAllowFeatures
impl Sync for UserAccountsResponseAllowFeatures
impl Unpin for UserAccountsResponseAllowFeatures
impl UnsafeUnpin for UserAccountsResponseAllowFeatures
impl UnwindSafe for UserAccountsResponseAllowFeatures
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ServiceExt for T
impl<T> ServiceExt for T
§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using HTTP status codes. Read more
§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using gRPC headers. Read more
§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
§fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
Add request id header and extension. Read more
§fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
Add request id header and extension, using
x-request-id as the header name. Read more§fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
Propgate request ids from requests to responses. Read more
§fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
Propgate request ids from requests to responses, using
x-request-id as the header name. Read more§fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
Intercept requests with over-sized payloads and convert them into
413 Payload Too Large responses. Read more