#[repr(C)]pub struct FfiComponentList {
pub json: *mut c_char,
pub count: usize,
}Expand description
Serialized component info returned by agent_doc_parse_components.
Fields§
§json: *mut c_charJSON-encoded array of components. Free with agent_doc_free_string.
count: usizeNumber of components parsed (convenience — also available in the JSON).
Auto Trait Implementations§
impl Freeze for FfiComponentList
impl RefUnwindSafe for FfiComponentList
impl !Send for FfiComponentList
impl !Sync for FfiComponentList
impl Unpin for FfiComponentList
impl UnsafeUnpin for FfiComponentList
impl UnwindSafe for FfiComponentList
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