pub struct DeployScript {
pub name: String,
pub content: String,
pub triggers: Vec<ScriptTrigger>,
}Expand description
デプロイスクリプト
Fields§
§name: Stringスクリプト名
content: Stringスクリプト内容
triggers: Vec<ScriptTrigger>トリガー条件
Trait Implementations§
Source§impl Clone for DeployScript
impl Clone for DeployScript
Source§fn clone(&self) -> DeployScript
fn clone(&self) -> DeployScript
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 moreAuto Trait Implementations§
impl Freeze for DeployScript
impl RefUnwindSafe for DeployScript
impl Send for DeployScript
impl Sync for DeployScript
impl Unpin for DeployScript
impl UnwindSafe for DeployScript
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