pub struct Entrypoint {Show 14 fields
pub name: String,
pub runner: Value,
pub run: Option<Value>,
pub description: Option<String>,
pub dependencies: Option<Value>,
pub environment: Option<Value>,
pub inputs: Option<Value>,
pub outputs: Option<Value>,
pub reliability: Option<Reliability>,
pub on_failure: Option<Value>,
pub on_success: Option<Vec<Value>>,
pub tests: Option<Vec<Value>>,
pub telemetry: Option<Value>,
pub resources: Option<Value>,
}Fields§
§name: String§runner: Value§run: Option<Value>§description: Option<String>§dependencies: Option<Value>§environment: Option<Value>§inputs: Option<Value>§outputs: Option<Value>§reliability: Option<Reliability>§on_failure: Option<Value>§on_success: Option<Vec<Value>>§tests: Option<Vec<Value>>§telemetry: Option<Value>§resources: Option<Value>Trait Implementations§
Source§impl Clone for Entrypoint
impl Clone for Entrypoint
Source§fn clone(&self) -> Entrypoint
fn clone(&self) -> Entrypoint
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 Entrypoint
impl Debug for Entrypoint
Source§impl<'de> Deserialize<'de> for Entrypoint
impl<'de> Deserialize<'de> for Entrypoint
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 Entrypoint
impl RefUnwindSafe for Entrypoint
impl Send for Entrypoint
impl Sync for Entrypoint
impl Unpin for Entrypoint
impl UnwindSafe for Entrypoint
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