[][src]Struct sxs_manifest::manifest::AssemblyManifest

pub struct AssemblyManifest {
    pub manifest_version: ManifestVersion,
    pub compatibility: Compatibility,
    pub dependency: Dependency,
}

Assembly manifest

Fields

manifest_version: ManifestVersion

Version of manifest

compatibility: Compatibility

Compatibility info

dependency: Dependency

Can specify SxS dependencies

Implementations

impl AssemblyManifest[src]

Implementation of common serialization

pub fn serialize_with_config<W: Write>(
    &self,
    config: EmitterConfig,
    writer: W
) -> SerializeResult<W>
[src]

Serialize manifest with custom config & writer

impl AssemblyManifest[src]

Serialization helper methods

pub fn serialize<W: Write>(&self, writer: W) -> SerializeResult<W>[src]

Serialize with default writer config

pub fn serialize_to_string_with_config(
    &self,
    config: EmitterConfig
) -> SerializeResult<String>
[src]

Serialize into string

pub fn serialize_to_string(&self) -> SerializeResult<String>[src]

Serialize into string with default writer config

Trait Implementations

impl Clone for AssemblyManifest[src]

impl Debug for AssemblyManifest[src]

impl Default for AssemblyManifest[src]

impl PartialEq<AssemblyManifest> for AssemblyManifest[src]

impl StructuralPartialEq for AssemblyManifest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.