#[repr(C)]pub struct TaskProgressT {
pub num_tasks: u32,
pub task_index: u32,
pub text: *const c_char,
pub fraction: f32,
pub _padding_32: [c_char; 4],
}
Fields§
§num_tasks: u32
§task_index: u32
§text: *const c_char
§fraction: f32
§_padding_32: [c_char; 4]
Trait Implementations§
Source§impl Clone for TaskProgressT
impl Clone for TaskProgressT
Source§fn clone(&self) -> TaskProgressT
fn clone(&self) -> TaskProgressT
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 Default for TaskProgressT
impl Default for TaskProgressT
impl Copy for TaskProgressT
Auto Trait Implementations§
impl Freeze for TaskProgressT
impl RefUnwindSafe for TaskProgressT
impl !Send for TaskProgressT
impl !Sync for TaskProgressT
impl Unpin for TaskProgressT
impl UnwindSafe for TaskProgressT
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