pub struct ContainerAutoParam {
pub file_ids: Option<Vec<String>>,
pub network_policy: Option<ContainerNetworkPolicy>,
pub skills: Option<Vec<SkillParam>>,
}Available on crate feature
response-types only.Expand description
Automatically creates a container for the request.
Fields§
§file_ids: Option<Vec<String>>An optional list of uploaded file IDs to make available in the container.
network_policy: Option<ContainerNetworkPolicy>Network access policy for the container.
skills: Option<Vec<SkillParam>>An optional list of skills to make available in the container.
Trait Implementations§
Source§impl Clone for ContainerAutoParam
impl Clone for ContainerAutoParam
Source§fn clone(&self) -> ContainerAutoParam
fn clone(&self) -> ContainerAutoParam
Returns a duplicate of the value. Read more
1.0.0 · 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 ContainerAutoParam
impl Debug for ContainerAutoParam
Source§impl Default for ContainerAutoParam
impl Default for ContainerAutoParam
Source§fn default() -> ContainerAutoParam
fn default() -> ContainerAutoParam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerAutoParam
impl<'de> Deserialize<'de> for ContainerAutoParam
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 ContainerAutoParam
impl PartialEq for ContainerAutoParam
Source§impl Serialize for ContainerAutoParam
impl Serialize for ContainerAutoParam
impl StructuralPartialEq for ContainerAutoParam
Auto Trait Implementations§
impl Freeze for ContainerAutoParam
impl RefUnwindSafe for ContainerAutoParam
impl Send for ContainerAutoParam
impl Sync for ContainerAutoParam
impl Unpin for ContainerAutoParam
impl UnsafeUnpin for ContainerAutoParam
impl UnwindSafe for ContainerAutoParam
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