pub struct AiServicesAccount {
pub name: String,
pub location: String,
pub kind: String,
pub id: String,
pub properties: AiServicesAccountProperties,
}Expand description
Azure AI Services account (kind=AIServices)
Fields§
§name: String§location: String§kind: String§id: String§properties: AiServicesAccountPropertiesImplementations§
Source§impl AiServicesAccount
impl AiServicesAccount
Sourcepub fn agents_endpoint(&self) -> String
pub fn agents_endpoint(&self) -> String
Derive the .services.ai.azure.com endpoint for the agents API.
Extracts the custom subdomain from the ARM properties.endpoint
(which may differ from the resource name), then constructs the
AI services endpoint. Falls back to the resource name.
Trait Implementations§
Source§impl Clone for AiServicesAccount
impl Clone for AiServicesAccount
Source§fn clone(&self) -> AiServicesAccount
fn clone(&self) -> AiServicesAccount
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 AiServicesAccount
impl Debug for AiServicesAccount
Source§impl<'de> Deserialize<'de> for AiServicesAccount
impl<'de> Deserialize<'de> for AiServicesAccount
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 AiServicesAccount
impl RefUnwindSafe for AiServicesAccount
impl Send for AiServicesAccount
impl Sync for AiServicesAccount
impl Unpin for AiServicesAccount
impl UnsafeUnpin for AiServicesAccount
impl UnwindSafe for AiServicesAccount
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