pub struct JobService {Show 15 fields
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub actions: Option<Actions>,
pub date_time: Option<String>,
pub description: Option<Description>,
pub id: Id,
pub jobs: Option<IdRef>,
pub log: Option<IdRef>,
pub name: Name,
pub oem: Option<Oem>,
pub service_capabilities: Option<JobServiceCapabilities>,
pub service_enabled: Option<bool>,
pub status: Option<Status>,
}
Expand description
The JobService schema contains properties for scheduling and execution of operations, represents the properties for the job service itself, and has links to jobs managed by the job service.
Fields§
§odata_context: Option<Context>
§odata_etag: Option<Etag>
§odata_id: Id
§odata_type: Type
§actions: Option<Actions>
§date_time: Option<String>
The current date and time setting for the job service.
description: Option<Description>
§id: Id
§jobs: Option<IdRef>
§log: Option<IdRef>
§name: Name
§oem: Option<Oem>
§service_capabilities: Option<JobServiceCapabilities>
§service_enabled: Option<bool>
An indication of whether this service is enabled.
status: Option<Status>
Trait Implementations§
Source§impl Clone for JobService
impl Clone for JobService
Source§fn clone(&self) -> JobService
fn clone(&self) -> JobService
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JobService
impl Debug for JobService
Source§impl Default for JobService
impl Default for JobService
Source§impl<'de> Deserialize<'de> for JobService
impl<'de> Deserialize<'de> for JobService
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 Metadata<'static> for JobService
impl Metadata<'static> for JobService
Source§const JSON_SCHEMA: &'static str = "JobService.v1_0_4.json"
const JSON_SCHEMA: &'static str = "JobService.v1_0_4.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for JobService
impl RefUnwindSafe for JobService
impl Send for JobService
impl Sync for JobService
impl Unpin for JobService
impl UnwindSafe for JobService
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