pub trait IBGTaskRequest: PNSObject {
// Provided methods
fn p_earliest_begin_date(&self) -> NSDate { ... }
fn p_set_earliest_begin_date(&mut self, date: NSDate) { ... }
}
Expand description
A trait containing all the methods for BGTaskRequest
Provided Methods§
Sourcefn p_earliest_begin_date(&self) -> NSDate
fn p_earliest_begin_date(&self) -> NSDate
The earliest date and time at which to run the task.
Sourcefn p_set_earliest_begin_date(&mut self, date: NSDate)
fn p_set_earliest_begin_date(&mut self, date: NSDate)
Sets the earliest date and time at which to run the task.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.