#[repr(C)]pub struct obex_service_s {
pub status: obex_status_e,
pub auth: i32,
pub filesize: i32,
pub transferred: i32,
pub name: [u8; 128],
pub path: [u8; 256],
pub description: [u8; 128],
pub mimetype: [u8; 64],
}Fields§
§status: obex_status_e§auth: i32§filesize: i32§transferred: i32§name: [u8; 128]§path: [u8; 256]§description: [u8; 128]§mimetype: [u8; 64]Trait Implementations§
Source§impl Clone for obex_service_s
impl Clone for obex_service_s
Source§fn clone(&self) -> obex_service_s
fn clone(&self) -> obex_service_s
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 moreimpl Copy for obex_service_s
Auto Trait Implementations§
impl Freeze for obex_service_s
impl RefUnwindSafe for obex_service_s
impl Send for obex_service_s
impl Sync for obex_service_s
impl Unpin for obex_service_s
impl UnwindSafe for obex_service_s
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