pub struct ContainerAuto {
pub type_: String,
pub file_ids: Option<Vec<String>>,
pub memory_limit: Option<ContainerAutoMemoryLimit>,
pub network_policy: Option<NetworkPolicy>,
pub skills: Option<Vec<Skill>>,
}Fields§
§type_: StringAutomatically creates a container for this request
file_ids: Option<Vec<String>>An optional list of uploaded files to make available to your code.
memory_limit: Option<ContainerAutoMemoryLimit>The memory limit for the container.
network_policy: Option<NetworkPolicy>Network access policy for the container.
skills: Option<Vec<Skill>>An optional list of skills referenced by id or inline data.
Trait Implementations§
Source§impl Clone for ContainerAuto
impl Clone for ContainerAuto
Source§fn clone(&self) -> ContainerAuto
fn clone(&self) -> ContainerAuto
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 ContainerAuto
impl Debug for ContainerAuto
Source§impl<'de> Deserialize<'de> for ContainerAuto
impl<'de> Deserialize<'de> for ContainerAuto
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 ContainerAuto
impl RefUnwindSafe for ContainerAuto
impl Send for ContainerAuto
impl Sync for ContainerAuto
impl Unpin for ContainerAuto
impl UnsafeUnpin for ContainerAuto
impl UnwindSafe for ContainerAuto
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