pub struct JdConvertResponse {
pub status: i32,
pub content: Option<Vec<JdConvertResult>>,
}Expand description
京东转链响应
convert 接口的响应
Fields§
§status: i32状态码,200 表示成功
content: Option<Vec<JdConvertResult>>转链结果数据
Trait Implementations§
Source§impl Clone for JdConvertResponse
impl Clone for JdConvertResponse
Source§fn clone(&self) -> JdConvertResponse
fn clone(&self) -> JdConvertResponse
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 JdConvertResponse
impl Debug for JdConvertResponse
Source§impl<'de> Deserialize<'de> for JdConvertResponse
impl<'de> Deserialize<'de> for JdConvertResponse
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 JdConvertResponse
impl RefUnwindSafe for JdConvertResponse
impl Send for JdConvertResponse
impl Sync for JdConvertResponse
impl Unpin for JdConvertResponse
impl UnwindSafe for JdConvertResponse
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