pub struct McpServerOauthLoginParams {
pub name: String,
pub scopes: Option<Vec<String>>,
pub timeout_secs: Option<i64>,
}Fields§
§name: String§scopes: Option<Vec<String>>§timeout_secs: Option<i64>Trait Implementations§
Source§impl Clone for McpServerOauthLoginParams
impl Clone for McpServerOauthLoginParams
Source§fn clone(&self) -> McpServerOauthLoginParams
fn clone(&self) -> McpServerOauthLoginParams
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 McpServerOauthLoginParams
impl Debug for McpServerOauthLoginParams
Source§impl<'de> Deserialize<'de> for McpServerOauthLoginParams
impl<'de> Deserialize<'de> for McpServerOauthLoginParams
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 McpServerOauthLoginParams
impl PartialEq for McpServerOauthLoginParams
Source§fn eq(&self, other: &McpServerOauthLoginParams) -> bool
fn eq(&self, other: &McpServerOauthLoginParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for McpServerOauthLoginParams
Auto Trait Implementations§
impl Freeze for McpServerOauthLoginParams
impl RefUnwindSafe for McpServerOauthLoginParams
impl Send for McpServerOauthLoginParams
impl Sync for McpServerOauthLoginParams
impl Unpin for McpServerOauthLoginParams
impl UnsafeUnpin for McpServerOauthLoginParams
impl UnwindSafe for McpServerOauthLoginParams
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