libnotcurses-sys 3.3.0

Low-level Rust bindings for the notcurses C library.
Documentation
//! `NcTree*` methods and associated functions.

mod options;
mod tree;

pub use options::*;
pub use tree::*;

use core::ptr::null_mut;
use std::ffi::{c_void, CString};

use super::NcTreeItem;

/// # `NcTreeItem` constructor
impl NcTreeItem {
    /// Creates an [`NcTreeItem`].
    pub fn new(curry: &str, subs: Option<&mut [NcTreeItem]>, subcount: usize) -> Self {
        if let Some(subs) = subs {
            Self {
                curry: CString::new(curry).unwrap().into_raw() as *mut _ as *mut c_void,
                subs: subs.as_mut_ptr(),
                subcount: subcount as u32,
            }
        } else {
            Self {
                curry: CString::new(curry).unwrap().into_raw() as *mut _ as *mut c_void,
                subs: null_mut(),
                subcount: subcount as u32,
            }
        }
    }
}