pub struct Manifest {
pub name: Option<String>,
pub contract_version: u32,
pub parser: String,
pub parser_command: Option<String>,
pub enforce_worktree_isolation: bool,
}Fields§
§name: Option<String>§contract_version: u32§parser: String§parser_command: Option<String>§enforce_worktree_isolation: boolWhen true, APM installs a PreToolUse hook that blocks writes outside
APM_TICKET_WORKTREE. Only applies to parser = "canonical" wrappers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
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 Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnsafeUnpin for Manifest
impl UnwindSafe for Manifest
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