pub trait DavCapabilityProfile<Provider: ?Sized>: Sealed {
const CLASS1: bool;
const CLASS2: bool;
const CLASS3: bool;
const EXTENSIONS: DavExtensionSet;
const PARTIAL_PUT: bool;
const PATCH: bool;
const PRIVATE_UPDATE_RANGE: bool;
}Expand description
Static maximum capability profile selected by a product provider.
Required Associated Constants§
const CLASS1: bool
const CLASS2: bool
const CLASS3: bool
const EXTENSIONS: DavExtensionSet
const PARTIAL_PUT: bool
const PATCH: bool
const PRIVATE_UPDATE_RANGE: bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.