pub struct HostedVersionRecord {
pub version_number: i64,
pub description: Option<String>,
pub content: Vec<u8>,
pub content_type: String,
pub version_label: Option<String>,
}Expand description
A hosted configuration version: raw configuration bytes plus metadata.
Fields§
§version_number: i64§description: Option<String>§content: Vec<u8>§content_type: String§version_label: Option<String>Trait Implementations§
Source§impl Clone for HostedVersionRecord
impl Clone for HostedVersionRecord
Source§fn clone(&self) -> HostedVersionRecord
fn clone(&self) -> HostedVersionRecord
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 HostedVersionRecord
impl Debug for HostedVersionRecord
Source§impl<'de> Deserialize<'de> for HostedVersionRecord
impl<'de> Deserialize<'de> for HostedVersionRecord
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 HostedVersionRecord
impl RefUnwindSafe for HostedVersionRecord
impl Send for HostedVersionRecord
impl Sync for HostedVersionRecord
impl Unpin for HostedVersionRecord
impl UnsafeUnpin for HostedVersionRecord
impl UnwindSafe for HostedVersionRecord
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