#[non_exhaustive]pub struct UpdateWorkspaceRequest {
pub name: Option<String>,
pub slug: Option<String>,
pub description: Option<String>,
pub default_text_model: Option<String>,
pub default_image_model: Option<String>,
pub default_provider_sort: Option<String>,
pub io_logging_api_key_ids: Option<Vec<u64>>,
pub io_logging_sampling_rate: Option<f64>,
pub is_data_discount_logging_enabled: Option<bool>,
pub is_observability_broadcast_enabled: Option<bool>,
pub is_observability_io_logging_enabled: Option<bool>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>§slug: Option<String>§description: Option<String>§default_text_model: Option<String>§default_image_model: Option<String>§default_provider_sort: Option<String>§io_logging_api_key_ids: Option<Vec<u64>>§io_logging_sampling_rate: Option<f64>§is_data_discount_logging_enabled: Option<bool>§is_observability_broadcast_enabled: Option<bool>§is_observability_io_logging_enabled: Option<bool>Implementations§
Source§impl UpdateWorkspaceRequest
impl UpdateWorkspaceRequest
pub fn builder() -> UpdateWorkspaceRequestBuilder
pub fn with_cleared_io_logging_api_key_ids( &self, ) -> UpdateWorkspaceRequestWithClearedIoLoggingApiKeyIds<'_>
Trait Implementations§
Source§impl Clone for UpdateWorkspaceRequest
impl Clone for UpdateWorkspaceRequest
Source§fn clone(&self) -> UpdateWorkspaceRequest
fn clone(&self) -> UpdateWorkspaceRequest
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 UpdateWorkspaceRequest
impl Debug for UpdateWorkspaceRequest
Source§impl<'de> Deserialize<'de> for UpdateWorkspaceRequest
impl<'de> Deserialize<'de> for UpdateWorkspaceRequest
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 UpdateWorkspaceRequest
impl RefUnwindSafe for UpdateWorkspaceRequest
impl Send for UpdateWorkspaceRequest
impl Sync for UpdateWorkspaceRequest
impl Unpin for UpdateWorkspaceRequest
impl UnsafeUnpin for UpdateWorkspaceRequest
impl UnwindSafe for UpdateWorkspaceRequest
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