trait WriteDeps<T: Serialize, K: VerifiedName> {
type Error;
// Required method
fn write_dep(
&self,
key: K,
doc: &mut TypedDocument<T>,
) -> Result<(), Self::Error>;
}Expand description
A trait for writing dependencies to a mutable TOML document representing an Atom manifest.