Struct plex_api::library::Part

source ·
pub struct Part<'a, M: MediaItem> {
    pub media_index: usize,
    pub part_index: usize,
    /* private fields */
}
Expand description

One part of a Media.

Fields§

§media_index: usize§part_index: usize

Implementations§

source§

impl<'a, M: MediaItem> Part<'a, M>

source

pub fn len(&self) -> Option<u64>

The length of this file on disk in bytes.

source

pub async fn download<W, R>(&self, writer: W, range: R) -> Resultwhere W: AsyncWrite + Unpin, R: RangeBounds<u64>,

Downloads the original media file for this part writing the data into the provided writer. A range of bytes within the file can be requested allowing for resumable transfers.

Configured timeout value will be ignored during downloading.

source

pub fn metadata(&self) -> &PartMetadata

The internal metadata for the media.

source§

impl<'a, M: MediaItemWithTranscoding> Part<'a, M>

source

pub async fn create_download_session( &self, options: M::Options ) -> Result<TranscodeSession>

Starts an offline transcode using the provided options.

The server may refuse to transcode if the options suggest that the original media file can be played back directly.

Can’t be called on media other than Movie, Episode or Track.

source

pub async fn create_streaming_session( &self, protocol: Protocol, options: M::Options ) -> Result<TranscodeSession>

Starts a streaming transcode using of the given media part using the streaming protocol and provided options.

Can’t be called on media other than Movie, Episode or Track.

Trait Implementations§

source§

impl<'a, M: Clone + MediaItem> Clone for Part<'a, M>

source§

fn clone(&self) -> Part<'a, M>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, M: Debug + MediaItem> Debug for Part<'a, M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, M> !RefUnwindSafe for Part<'a, M>

§

impl<'a, M> Send for Part<'a, M>where M: Send,

§

impl<'a, M> Sync for Part<'a, M>where M: Sync,

§

impl<'a, M> Unpin for Part<'a, M>where M: Unpin,

§

impl<'a, M> !UnwindSafe for Part<'a, M>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more