pub struct StringyField {
pub name: String,
pub kind: StringyFieldKind,
}Expand description
A single readable text accessor on an opaque DTO. The name is the Rust
field name (snake_case), used to derive the swift-bridge lowerCamelCase
method call.
Fields§
§name: String§kind: StringyFieldKindTrait Implementations§
Source§impl Clone for StringyField
impl Clone for StringyField
Source§fn clone(&self) -> StringyField
fn clone(&self) -> StringyField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StringyField
impl RefUnwindSafe for StringyField
impl Send for StringyField
impl Sync for StringyField
impl Unpin for StringyField
impl UnsafeUnpin for StringyField
impl UnwindSafe for StringyField
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