[−][src]Struct solicit::http::priority::SimplePrioritizer
An implementation of the DataPrioritizer
trait that is based on finding the first stream from
the given SessionState
instance that can send data and returning this chunk.
For all means and purposes, the order of data chunks that the prioritizer returns is undefined and should not be relied on.
Methods
impl<'a, 'b, State> SimplePrioritizer<'a, 'b, State> where
State: SessionState + 'a,
[src]
impl<'a, 'b, State> SimplePrioritizer<'a, 'b, State> where
State: SessionState + 'a,
pub fn new(
state: &'a mut State,
buf: &'b mut [u8]
) -> SimplePrioritizer<'a, 'b, State>
[src]
pub fn new(
state: &'a mut State,
buf: &'b mut [u8]
) -> SimplePrioritizer<'a, 'b, State>
Creates a new SimplePrioritizer
that will use the given state to find stream data that
should be sent and use the given buffer to hold the data of the returned chunk.
Trait Implementations
impl<'a, 'b, State> DataPrioritizer for SimplePrioritizer<'a, 'b, State> where
State: SessionState + 'a,
[src]
impl<'a, 'b, State> DataPrioritizer for SimplePrioritizer<'a, 'b, State> where
State: SessionState + 'a,
fn get_next_chunk(&mut self) -> HttpResult<Option<DataChunk>>
[src]
fn get_next_chunk(&mut self) -> HttpResult<Option<DataChunk>>
Returns the next DataChunk
that should be sent on the HTTP/2 connection. None
indicates that currently there was no data that could be sent at that point. Read more
Auto Trait Implementations
impl<'a, 'b, State> Send for SimplePrioritizer<'a, 'b, State> where
State: Send,
impl<'a, 'b, State> Send for SimplePrioritizer<'a, 'b, State> where
State: Send,
impl<'a, 'b, State> Sync for SimplePrioritizer<'a, 'b, State> where
State: Sync,
impl<'a, 'b, State> Sync for SimplePrioritizer<'a, 'b, State> where
State: Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more