Struct UploadSession

Source
pub struct UploadSession { /* private fields */ }

Implementations§

Source§

impl UploadSession

Source

pub fn empty(url: Url) -> UploadSession

Source

pub fn url(&self) -> &Url

Source

pub fn status(&self) -> RequestBuilder

Source

pub fn cancel(&self) -> RequestBuilder

Source

pub fn from_reader<U: AsRef<str>, R: Read>( upload_url: U, reader: R, ) -> GraphResult<UploadSession>

Source

pub fn stream( &mut self, ) -> GraphResult<impl Stream<Item = GraphResult<Response>> + '_>

Stream upload session responses. Each stream.next().await returns a Option<GraphResult<reqwest::Response>>.

No pinning is required. The stream is pinned before being returned to the caller.

§Example
use graph_rs_sdk::*;
use futures::stream::StreamExt;
use std::fs::OpenOptions;

static ACCESS_TOKEN: &str = "ACCESS_TOKEN";

// Path to upload file to in OneDrive.
static ONEDRIVE_PATH: &str = ":/file.txt:";

static LOCAL_FILE_PATH: &str = "./file.txt";

let client = Graph::new("ACCESS_TOKEN");

 let response = client
    .me()
    .drive()
    .item_by_path(ONEDRIVE_PATH)
    .create_upload_session(&serde_json::json!({
        "@microsoft.graph.conflictBehavior": Some("fail".to_string())
    }))
    .send()
    .await?;

    assert!(response.status().is_success());

 let mut file = OpenOptions::new()
    .read(true)
    .open(LOCAL_FILE_PATH)?;

 let mut upload_session = response.into_upload_session(file).await?;
 let mut stream = upload_session.stream()?;

 while let Some(result) = stream.next().await {
    match result {
        Ok(response) => {
            println!("{response:#?}");

            let body: serde_json::Value = response.json().await?;
            println!("{body:#?}");
        }
        Err(err) => panic!("Error on upload session {err:#?}")
    }
 }
Source

pub fn channel(&mut self) -> GraphResult<Receiver<Result<Response>>>

Source

pub fn channel_timeout( &mut self, timeout: Duration, ) -> GraphResult<Receiver<Result<Response>>>

Source

pub fn channel_buffer_timeout( &mut self, buffer: usize, timeout: Duration, ) -> GraphResult<Receiver<Result<Response>>>

Trait Implementations§

Source§

impl AsyncIterator for UploadSession

Source§

type Item = Result<Response, GraphFailure>

Source§

fn next<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Option<Self::Item>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

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, U> Into<U> for T
where U: From<T>,

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
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> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T