pub struct User {Show 13 fields
pub pubkey: String,
pub is_admin: i64,
pub admin_password: Option<String>,
pub is_solver: i64,
pub is_banned: i64,
pub category: i64,
pub last_trade_index: i64,
pub total_reviews: i64,
pub total_rating: f64,
pub last_rating: i64,
pub max_rating: i64,
pub min_rating: i64,
pub created_at: i64,
}Expand description
Database representation of a Mostro user.
This is the canonical row stored on the Mostro node. It tracks identity
data (pubkey), administrative role flags, the last trade index used by
the user and rating aggregates used to compute reputation.
Fields§
§pubkey: StringMaster public key of the user, hex encoded.
is_admin: i641 when the user has admin privileges, 0 otherwise. Stored as
i64 to match the underlying SQLite representation.
admin_password: Option<String>Optional password used to authenticate privileged admin actions.
is_solver: i641 when the user is a dispute solver, 0 otherwise.
is_banned: i641 when the user is banned from the platform, 0 otherwise.
category: i64Free-form category bucket. Reserved for future segmentation.
last_trade_index: i64Last trade index used by this user. When a user creates a new order (or takes one) the incoming trade index must be strictly greater than this value, or the request is rejected.
total_reviews: i64Total number of ratings the user has received.
total_rating: f64Weighted rating average computed from all received ratings.
last_rating: i64Most recent rating received, in the MIN_RATING..=MAX_RATING range.
max_rating: i64Highest rating ever received.
min_rating: i64Lowest rating ever received.
created_at: i64Unix timestamp (seconds) when the user record was created.
Implementations§
Source§impl User
impl User
Sourcepub fn new(
pubkey: String,
is_admin: i64,
is_solver: i64,
is_banned: i64,
category: i64,
trade_index: i64,
) -> Self
pub fn new( pubkey: String, is_admin: i64, is_solver: i64, is_banned: i64, category: i64, trade_index: i64, ) -> Self
Create a new User with fresh rating aggregates.
trade_index becomes the user’s last_trade_index. The created_at
timestamp is set to the current system time.
Sourcepub fn update_rating(&mut self, rating: u8)
pub fn update_rating(&mut self, rating: u8)
Record a new rating for the user and refresh the aggregates.
The first vote is weighted by 1/2 so that a single review cannot
anchor a perfect or disastrous reputation. Subsequent votes update
total_rating with an incremental running-average formula.
min_rating and max_rating are tightened as new extremes arrive.
§Example
use mostro_core::user::User;
let mut user = User::new("pubkey".into(), 0, 0, 0, 0, 0);
user.update_rating(5);
assert_eq!(user.total_reviews, 1);
assert_eq!(user.max_rating, 5);Trait Implementations§
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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>,
impl StructuralPartialEq for User
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnsafeUnpin for User
impl UnwindSafe for User
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more