Home
last modified time | relevance | path

Searched defs:Frame (Results 1 – 4 of 4) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
Ddispatcher.rs337 pub(crate) fn insert(&mut self, frame: Frame) { in insert()
420 pub(crate) fn pop_front(&mut self) -> Result<Option<Frame>, H2Error> { in pop_front()
443 pub(crate) fn push_back(&mut self, frame: Frame) { in push_back()
447 pub(crate) fn pop_front(&mut self) -> Option<Frame> { in pop_front()
613 frame: Frame, in send_frame_to_controller()
948 goaway: Frame, in poll_send_go_away()
962 reset: Frame, in poll_send_reset()
1212 goaway: Frame, in goaway_unsent_stream()
1315 frame: Frame, in controller_send_frame_to_stream()
1328 fn set_receiver(&mut self, receiver: UnboundedReceiver<Frame>) { in set_receiver()
[all …]
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
Dhttp2.rs83 headers_frame: Frame, in frame_2_response()
164 ) -> Result<Option<Frame>, HttpClientError> { in build_data_frame()
196 ) -> Result<Frame, HttpError> { in build_headers_frame()
/commonlibrary/rust/ylong_http/ylong_http/src/h2/
Dframe.rs51 pub struct Frame { struct
53 flags: FrameFlags, argument
60 pub enum FrameType { argument
201 impl Frame { implementation
Dencoder.rs121 pub fn set_frame(&mut self, frame: Frame) { in set_frame()