pub struct NodeBase {
pub description: Option<String>,
pub depends: Option<Vec<String>>,
pub human_gate: Option<HumanGate>,
pub retry_policy: Option<RetryPolicy>,
pub timeout_ms: Option<u64>,
pub max_output_bytes: Option<u64>,
pub output_schema: Option<Value>,
pub unsafe_allow_ungated: Option<bool>,
}Fields§
§description: Option<String>§depends: Option<Vec<String>>§human_gate: Option<HumanGate>§retry_policy: Option<RetryPolicy>§timeout_ms: Option<u64>§max_output_bytes: Option<u64>§output_schema: Option<Value>§unsafe_allow_ungated: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodeBase
impl<'de> Deserialize<'de> for NodeBase
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
impl StructuralPartialEq for NodeBase
Auto Trait Implementations§
impl Freeze for NodeBase
impl RefUnwindSafe for NodeBase
impl Send for NodeBase
impl Sync for NodeBase
impl Unpin for NodeBase
impl UnsafeUnpin for NodeBase
impl UnwindSafe for NodeBase
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