pub trait CheckRelationship {
    // Required method
    fn with(&self, user: &str) -> RelationshipStatus;
}

Required Methods§

source

fn with(&self, user: &str) -> RelationshipStatus

Implementations on Foreign Types§

source§

impl CheckRelationship for Vec<Relationship>

source§

fn with(&self, user: &str) -> RelationshipStatus

Implementors§