pub struct ExternalCaptureManifest {
pub format_version: String,
pub description: String,
pub source: ExternalCaptureSource,
pub buffers: Option<ExternalBufferSet>,
pub captures: Vec<ExternalCaptureEntry>,
pub normalization: ExternalNormalization,
pub notes: Vec<String>,
}Fields§
§format_version: String§description: String§source: ExternalCaptureSource§buffers: Option<ExternalBufferSet>§captures: Vec<ExternalCaptureEntry>§normalization: ExternalNormalization§notes: Vec<String>Trait Implementations§
Source§impl Clone for ExternalCaptureManifest
impl Clone for ExternalCaptureManifest
Source§fn clone(&self) -> ExternalCaptureManifest
fn clone(&self) -> ExternalCaptureManifest
Returns a duplicate of the value. Read more
1.0.0 · 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 ExternalCaptureManifest
impl Debug for ExternalCaptureManifest
Source§impl<'de> Deserialize<'de> for ExternalCaptureManifest
impl<'de> Deserialize<'de> for ExternalCaptureManifest
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 ExternalCaptureManifest
impl RefUnwindSafe for ExternalCaptureManifest
impl Send for ExternalCaptureManifest
impl Sync for ExternalCaptureManifest
impl Unpin for ExternalCaptureManifest
impl UnsafeUnpin for ExternalCaptureManifest
impl UnwindSafe for ExternalCaptureManifest
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