#[repr(C)]pub struct indigo_blob_entry {
pub property: *mut indigo_property,
pub item: *mut indigo_item,
pub content: *mut c_void,
pub size: c_long,
pub format: [c_char; 128],
pub mutext: pthread_mutex_t,
}Expand description
BLOB entry type.
Fields§
§property: *mut indigo_property<BLOB property
item: *mut indigo_item< BLOB item
content: *mut c_void< BLOB content
size: c_long< BLOB size
format: [c_char; 128]< BLOB format, known file type suffix like “.fits” or “.jpeg”
mutext: pthread_mutex_t< BLOB mutex
Auto Trait Implementations§
impl Freeze for indigo_blob_entry
impl RefUnwindSafe for indigo_blob_entry
impl !Send for indigo_blob_entry
impl !Sync for indigo_blob_entry
impl Unpin for indigo_blob_entry
impl UnwindSafe for indigo_blob_entry
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