pub struct TbdVersion2UndefinedsSection {
pub archs: Vec<String>,
pub symbols: Vec<String>,
pub objc_classes: Vec<String>,
pub objc_ivars: Vec<String>,
pub weak_ref_symbols: Vec<String>,
}
Expand description
Undefineds sections in a version 2 TBD structure.
Fields§
§archs: Vec<String>
The list of architecture slices.
symbols: Vec<String>
List of symbols.
objc_classes: Vec<String>
List of Objective-C classes.
objc_ivars: Vec<String>
List of Objective-C instance variables.
weak_ref_symbols: Vec<String>
List of weak defined symbols.
Trait Implementations§
Source§impl Clone for TbdVersion2UndefinedsSection
impl Clone for TbdVersion2UndefinedsSection
Source§fn clone(&self) -> TbdVersion2UndefinedsSection
fn clone(&self) -> TbdVersion2UndefinedsSection
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 moreSource§impl Debug for TbdVersion2UndefinedsSection
impl Debug for TbdVersion2UndefinedsSection
Source§impl<'de> Deserialize<'de> for TbdVersion2UndefinedsSection
impl<'de> Deserialize<'de> for TbdVersion2UndefinedsSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TbdVersion2UndefinedsSection
impl RefUnwindSafe for TbdVersion2UndefinedsSection
impl Send for TbdVersion2UndefinedsSection
impl Sync for TbdVersion2UndefinedsSection
impl Unpin for TbdVersion2UndefinedsSection
impl UnwindSafe for TbdVersion2UndefinedsSection
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