pub struct GetPublicSettings200Response {
pub workspace_id: String,
pub slack_name: Option<String>,
pub slack_team_id: Option<String>,
pub teams_team_id: Option<String>,
pub teams_team_name: Option<String>,
pub teams_team_guid: Option<String>,
pub large_file_storage: Option<Box<LargeFileStorage>>,
pub datatable: Option<Box<DataTableSettings>>,
pub deploy_ui: Option<Box<WorkspaceDeployUiSettings>>,
pub mute_critical_alerts: Option<bool>,
}Fields§
§workspace_id: String§slack_name: Option<String>§slack_team_id: Option<String>§teams_team_id: Option<String>§teams_team_name: Option<String>§teams_team_guid: Option<String>§large_file_storage: Option<Box<LargeFileStorage>>§datatable: Option<Box<DataTableSettings>>§deploy_ui: Option<Box<WorkspaceDeployUiSettings>>§mute_critical_alerts: Option<bool>Implementations§
Source§impl GetPublicSettings200Response
impl GetPublicSettings200Response
pub fn new(workspace_id: String) -> GetPublicSettings200Response
Trait Implementations§
Source§impl Clone for GetPublicSettings200Response
impl Clone for GetPublicSettings200Response
Source§fn clone(&self) -> GetPublicSettings200Response
fn clone(&self) -> GetPublicSettings200Response
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 GetPublicSettings200Response
impl Debug for GetPublicSettings200Response
Source§impl Default for GetPublicSettings200Response
impl Default for GetPublicSettings200Response
Source§fn default() -> GetPublicSettings200Response
fn default() -> GetPublicSettings200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPublicSettings200Response
impl<'de> Deserialize<'de> for GetPublicSettings200Response
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 GetPublicSettings200Response
impl PartialEq for GetPublicSettings200Response
Source§fn eq(&self, other: &GetPublicSettings200Response) -> bool
fn eq(&self, other: &GetPublicSettings200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetPublicSettings200Response
Auto Trait Implementations§
impl Freeze for GetPublicSettings200Response
impl RefUnwindSafe for GetPublicSettings200Response
impl Send for GetPublicSettings200Response
impl Sync for GetPublicSettings200Response
impl Unpin for GetPublicSettings200Response
impl UnsafeUnpin for GetPublicSettings200Response
impl UnwindSafe for GetPublicSettings200Response
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