pub trait IOpcPart_Impl: Sized {
    // Required methods
    fn GetRelationshipSet(&self) -> Result<IOpcRelationshipSet>;
    fn GetContentStream(&self) -> Result<IStream>;
    fn GetName(&self) -> Result<IOpcPartUri>;
    fn GetContentType(&self) -> Result<PWSTR>;
    fn GetCompressionOptions(&self) -> Result<OPC_COMPRESSION_OPTIONS>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§