#[non_exhaustive]pub struct CreateWorkspaceRequest {
pub name: 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: 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 CreateWorkspaceRequest
impl CreateWorkspaceRequest
pub fn builder() -> CreateWorkspaceRequestBuilder
Trait Implementations§
Source§impl Clone for CreateWorkspaceRequest
impl Clone for CreateWorkspaceRequest
Source§fn clone(&self) -> CreateWorkspaceRequest
fn clone(&self) -> CreateWorkspaceRequest
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 CreateWorkspaceRequest
impl Debug for CreateWorkspaceRequest
Source§impl<'de> Deserialize<'de> for CreateWorkspaceRequest
impl<'de> Deserialize<'de> for CreateWorkspaceRequest
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 CreateWorkspaceRequest
impl RefUnwindSafe for CreateWorkspaceRequest
impl Send for CreateWorkspaceRequest
impl Sync for CreateWorkspaceRequest
impl Unpin for CreateWorkspaceRequest
impl UnsafeUnpin for CreateWorkspaceRequest
impl UnwindSafe for CreateWorkspaceRequest
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