pub struct GraphResponse {
pub body: Option<String>,
pub headers: HashMap<String, String>,
pub status_line: StatusLine,
pub extensions: HashMap<String, Value>,
}Expand description
Graph 响应
Fields§
§body: Option<String>响应体
headers: HashMap<String, String>响应头
status_line: StatusLine状态行
extensions: HashMap<String, Value>扩展字段
Trait Implementations§
Source§impl Clone for GraphResponse
impl Clone for GraphResponse
Source§fn clone(&self) -> GraphResponse
fn clone(&self) -> GraphResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphResponse
impl Debug for GraphResponse
Source§impl Default for GraphResponse
impl Default for GraphResponse
Source§fn default() -> GraphResponse
fn default() -> GraphResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphResponse
impl<'de> Deserialize<'de> for GraphResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GraphResponse
impl RefUnwindSafe for GraphResponse
impl Send for GraphResponse
impl Sync for GraphResponse
impl Unpin for GraphResponse
impl UnsafeUnpin for GraphResponse
impl UnwindSafe for GraphResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more