pub struct PersonOrg {
pub person_id: String,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub organization: String,
}Expand description
A person at an organization, for StepBuilder::person_and_org.
Fields§
§person_id: String§first_name: Option<String>§last_name: Option<String>§organization: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for PersonOrg
impl RefUnwindSafe for PersonOrg
impl Send for PersonOrg
impl Sync for PersonOrg
impl Unpin for PersonOrg
impl UnsafeUnpin for PersonOrg
impl UnwindSafe for PersonOrg
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