[][src]Struct hatchling::profile_builder::Profile

pub struct Profile {
    pub graph: Graph,
}

Fields

graph: Graph

Methods

impl Profile[src]

pub fn new() -> Profile[src]

pub fn set_name(&mut self, name: &str)[src]

pub fn set_last_name(&mut self, lastname: &str)[src]

pub fn set_first_name(&mut self, firstname: &str)[src]

pub fn set_gender(&mut self, gender: &str)[src]

pub fn set_birthday_and_age(&mut self, month: u32, day: u32, year: i32)[src]

pub fn add_phone_number(&mut self, phonenum: &str)[src]

pub fn add_birth_place(&mut self, birth_place: &str)[src]

pub fn add_home_location(&mut self, home_location: &str)[src]

pub fn add_email(&mut self, email: &str)[src]

pub fn add_alumni_relationship(&mut self, school_name: &str)[src]

pub fn add_account(
    &mut self,
    username: &str,
    account_holder_id_override: Option<&str>
)
[src]

pub fn add_facebook_friend(&mut self, name: &str, fb_profile_url: &str)[src]

Auto Trait Implementations

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

impl RefUnwindSafe for Profile

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]