[][src]Struct graph_http::url::GraphUrl

pub struct GraphUrl { /* fields omitted */ }

Implementations

impl GraphUrl[src]

pub fn parse(input: &str) -> Result<Self, GraphFailure>[src]

pub fn as_str(&self) -> &str[src]

pub fn set_host(&mut self, host: &str)[src]

pub fn host(&self) -> Option<&str>[src]

pub fn path(&self) -> &str[src]

pub fn set_path<I: AsRef<str>>(&mut self, path: I)[src]

pub fn extend_path<I: AsRef<str>>(&mut self, path: &[I])[src]

pub fn query(&self) -> Option<&str>[src]

pub fn set_query<I: AsRef<str>>(&mut self, query: I)[src]

pub fn append_query_pair<KV: AsRef<str>>(&mut self, key: KV, value: KV)[src]

pub fn path_segments_mutable(&mut self) -> Result<PathSegmentsMut<'_>, ()>[src]

pub fn extend_path_os_str_lossy(&mut self, path: &[&OsStr]) -> &mut Self[src]

pub fn to_url(&self) -> Url[src]

pub fn to_reqwest_url(&self) -> Url[src]

pub fn query_pairs_mutable(&mut self) -> Serializer<'_, UrlQuery<'_>>[src]

pub fn starts_with(&self, start: &str) -> bool[src]

pub fn ends_with(&self, end: &str) -> bool[src]

pub fn replace(&mut self, input: &str) -> Result<(), GraphFailure>[src]

pub fn count(&mut self, value: &str)[src]

pub fn select(&mut self, value: &[&str])[src]

pub fn expand(&mut self, value: &[&str])[src]

pub fn filter(&mut self, value: &[&str])[src]

pub fn order_by(&mut self, value: &[&str])[src]

pub fn search(&mut self, value: &str)[src]

pub fn format(&mut self, value: &str)[src]

pub fn skip(&mut self, value: &str)[src]

pub fn top(&mut self, value: &str)[src]

Trait Implementations

impl<Client, Body, Form> AsMut<GraphUrl> for GraphRequest<Client, Body, Form>[src]

impl AsMut<Url> for GraphUrl[src]

impl<Client, Body, Form> AsRef<GraphUrl> for GraphRequest<Client, Body, Form>[src]

impl AsRef<Url> for GraphUrl[src]

impl AsRef<str> for GraphUrl[src]

impl Clone for GraphUrl[src]

impl Debug for GraphUrl[src]

impl Deref for GraphUrl[src]

type Target = str

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for GraphUrl[src]

impl<'_> From<&'_ Url> for GraphUrl[src]

impl From<Url> for GraphUrl[src]

impl FromStr for GraphUrl[src]

type Err = GraphFailure

The associated error which can be returned from parsing.

impl Index<Range<Position>> for GraphUrl[src]

type Output = str

The returned type after indexing.

impl Index<RangeFrom<Position>> for GraphUrl[src]

type Output = str

The returned type after indexing.

impl Index<RangeFull> for GraphUrl[src]

type Output = str

The returned type after indexing.

impl Index<RangeTo<Position>> for GraphUrl[src]

type Output = str

The returned type after indexing.

impl PartialEq<GraphUrl> for GraphUrl[src]

impl Serialize for GraphUrl[src]

impl StructuralPartialEq for GraphUrl[src]

impl ToString for GraphUrl[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.