Trait cargonauts::api::Patch [] [src]

pub trait Patch: Resource {
    type Patch: Deserialize;
    fn patch(id: &Self::Id, patch: Self::Patch) -> Result<Self, Error>;
}

Associated Types

Required Methods

Implementors