pub struct PostData(/* private fields */);
Expand description
See _cef_post_data_t for more documentation.
Trait Implementations§
Source§impl ConvertParam<*mut _cef_post_data_t> for &PostData
impl ConvertParam<*mut _cef_post_data_t> for &PostData
fn as_raw(self) -> *mut _cef_post_data_t
Source§impl ConvertParam<*mut _cef_post_data_t> for &mut PostData
impl ConvertParam<*mut _cef_post_data_t> for &mut PostData
fn as_raw(self) -> *mut _cef_post_data_t
Source§impl ConvertReturnValue<PostData> for *mut _cef_post_data_t
impl ConvertReturnValue<PostData> for *mut _cef_post_data_t
fn as_wrapper(self) -> PostData
Source§impl ImplPostData for PostData
impl ImplPostData for PostData
fn is_read_only(&self) -> c_int
fn has_excluded_elements(&self) -> c_int
fn get_element_count(&self) -> usize
fn get_elements(&self, elements: Option<&mut Vec<Option<PostDataElement>>>)
fn remove_element( &self, element: Option<&mut impl ImplPostDataElement>, ) -> c_int
fn add_element(&self, element: Option<&mut impl ImplPostDataElement>) -> c_int
fn remove_elements(&self)
fn get_raw(&self) -> *mut _cef_post_data_t
Source§impl Into<*mut _cef_post_data_t> for PostData
impl Into<*mut _cef_post_data_t> for PostData
Source§fn into(self) -> *mut _cef_post_data_t
fn into(self) -> *mut _cef_post_data_t
Converts this type into the (usually inferred) input type.
Source§impl Rc for PostData
impl Rc for PostData
Source§fn as_base(&self) -> &_cef_base_ref_counted_t
fn as_base(&self) -> &_cef_base_ref_counted_t
Get the reference of cef_base_ref_counted_t.
Source§unsafe fn release(&self) -> bool
unsafe fn release(&self) -> bool
Decrease reference count by 1 and release the value if the count meets 0.
Reuturn
True
if it is released.Source§fn has_one_ref(&self) -> bool
fn has_one_ref(&self) -> bool
True
if the reference count is exactly 1.Source§fn has_at_least_one_ref(&self) -> bool
fn has_at_least_one_ref(&self) -> bool
True
if the reference count is larger than 0.Auto Trait Implementations§
impl Freeze for PostData
impl RefUnwindSafe for PostData
impl Send for PostData
impl Sync for PostData
impl Unpin for PostData
impl UnwindSafe for PostData
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