pub struct DispatchInfo {
pub provider: Option<String>,
pub contact: Option<String>,
pub dispatch_time: Option<i64>,
}Expand description
审核提供商分配信息(对应 Java 内嵌类 WxOpenXmlMessage.DispatchInfo)。
Fields§
§provider: Option<String>提供商,如:上海倍通企业信用征信有限公司。
contact: Option<String>联系方式,如:咨询电话:0411-84947888。
dispatch_time: Option<i64>派遣时间戳(秒),如:1704952913。
Trait Implementations§
Source§impl Clone for DispatchInfo
impl Clone for DispatchInfo
Source§fn clone(&self) -> DispatchInfo
fn clone(&self) -> DispatchInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DispatchInfo
impl Debug for DispatchInfo
Source§impl Default for DispatchInfo
impl Default for DispatchInfo
Source§fn default() -> DispatchInfo
fn default() -> DispatchInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DispatchInfo
impl<'de> Deserialize<'de> for DispatchInfo
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
Source§impl PartialEq for DispatchInfo
impl PartialEq for DispatchInfo
impl StructuralPartialEq for DispatchInfo
Auto Trait Implementations§
impl Freeze for DispatchInfo
impl RefUnwindSafe for DispatchInfo
impl Send for DispatchInfo
impl Sync for DispatchInfo
impl Unpin for DispatchInfo
impl UnsafeUnpin for DispatchInfo
impl UnwindSafe for DispatchInfo
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