pub struct CodecVersionPolicyDocument {
pub minimum_version: String,
pub required_features: Vec<String>,
pub deployment_id: Option<String>,
pub docs_url: Option<String>,
pub valid_until: Option<String>,
}Expand description
Shape of .well-known/codec/version-policy.json.
Fields§
§minimum_version: String§required_features: Vec<String>§deployment_id: Option<String>§docs_url: Option<String>§valid_until: Option<String>Trait Implementations§
Source§impl Clone for CodecVersionPolicyDocument
impl Clone for CodecVersionPolicyDocument
Source§fn clone(&self) -> CodecVersionPolicyDocument
fn clone(&self) -> CodecVersionPolicyDocument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CodecVersionPolicyDocument
impl Debug for CodecVersionPolicyDocument
Source§impl<'de> Deserialize<'de> for CodecVersionPolicyDocument
impl<'de> Deserialize<'de> for CodecVersionPolicyDocument
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 CodecVersionPolicyDocument
impl RefUnwindSafe for CodecVersionPolicyDocument
impl Send for CodecVersionPolicyDocument
impl Sync for CodecVersionPolicyDocument
impl Unpin for CodecVersionPolicyDocument
impl UnsafeUnpin for CodecVersionPolicyDocument
impl UnwindSafe for CodecVersionPolicyDocument
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