pub struct GetOutput {
pub checktime: Option<i64>,
pub key: Option<String>,
pub level: Option<String>,
pub message: Option<String>,
pub nextduedate: Option<String>,
pub productname: Option<String>,
pub regdate: Option<String>,
pub serverid: Option<String>,
pub signature: Option<String>,
pub sockets: Option<i64>,
pub status: Status,
pub url: Option<String>,
}Fields§
§checktime: Option<i64>Timestamp of the last check done.
key: Option<String>The subscription key, if set and permitted to access.
level: Option<String>A short code for the subscription level.
message: Option<String>A more human readable status message.
nextduedate: Option<String>Next due date of the set subscription.
productname: Option<String>Human readable productname of the set subscription.
regdate: Option<String>Register date of the set subscription.
serverid: Option<String>The server ID, if permitted to access.
signature: Option<String>Signature for offline keys
sockets: Option<i64>The number of sockets for this host.
status: StatusThe current subscription status.
url: Option<String>URL to the web shop.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetOutput
impl<'de> Deserialize<'de> for GetOutput
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 GetOutput
impl RefUnwindSafe for GetOutput
impl Send for GetOutput
impl Sync for GetOutput
impl Unpin for GetOutput
impl UnsafeUnpin for GetOutput
impl UnwindSafe for GetOutput
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