pub struct FoundryConnection {
pub name: Option<String>,
pub account: String,
pub endpoint: Option<String>,
pub project: String,
pub api_version: Option<String>,
}Fields§
§name: Option<String>§account: StringFoundry account name (e.g. mklabaifndr).
endpoint: Option<String>Full endpoint override (sovereign clouds, testing). Default:
https://{account}.services.ai.azure.com.
project: StringFoundry project name (e.g. proj-default).
api_version: Option<String>Override for the data-plane api-version (default v1).
Trait Implementations§
Source§impl Clone for FoundryConnection
impl Clone for FoundryConnection
Source§fn clone(&self) -> FoundryConnection
fn clone(&self) -> FoundryConnection
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 FoundryConnection
impl Debug for FoundryConnection
Source§impl<'de> Deserialize<'de> for FoundryConnection
impl<'de> Deserialize<'de> for FoundryConnection
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 FoundryConnection
impl RefUnwindSafe for FoundryConnection
impl Send for FoundryConnection
impl Sync for FoundryConnection
impl Unpin for FoundryConnection
impl UnsafeUnpin for FoundryConnection
impl UnwindSafe for FoundryConnection
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