pub struct ScopeInfo {
pub name: Option<String>,
pub id: Option<String>,
pub pending: bool,
pub members: Option<Vec<ScopeMember>>,
pub execution_env: Option<String>,
pub mode: Option<String>,
pub connection_mode: Option<String>,
pub agent_mode: Option<String>,
pub default_active: bool,
pub is_test: bool,
}Fields§
§name: Option<String>§id: Option<String>§pending: bool§members: Option<Vec<ScopeMember>>§execution_env: Option<String>§mode: Option<String>§connection_mode: Option<String>§agent_mode: Option<String>§default_active: bool§is_test: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for ScopeInfo
impl<'de> Deserialize<'de> for ScopeInfo
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
Auto Trait Implementations§
impl Freeze for ScopeInfo
impl RefUnwindSafe for ScopeInfo
impl Send for ScopeInfo
impl Sync for ScopeInfo
impl Unpin for ScopeInfo
impl UnsafeUnpin for ScopeInfo
impl UnwindSafe for ScopeInfo
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