Lines Matching defs:Of
268 pub struct Of(pub u32); struct
270 impl Of { impl
281 pub fn new(ordinal: u32, YearFlags(flags): YearFlags) -> Of { in new()
287 pub fn from_mdf(Mdf(mdf): Mdf) -> Of { in from_mdf()
297 let Of(of) = *self; in valid() localVariable
304 let Of(of) = *self; in ordinal() localVariable
309 pub fn with_ordinal(&self, ordinal: u32) -> Of { in with_ordinal()
311 let Of(of) = *self; in with_ordinal() localVariable
317 let Of(of) = *self; in flags() localVariable
322 pub fn with_flags(&self, YearFlags(flags): YearFlags) -> Of { in with_flags()
323 let Of(of) = *self; in with_flags() localVariable
329 let Of(of) = *self; in weekday() localVariable
336 let Of(of) = *self; in isoweekdate_raw() localVariable
347 pub fn succ(&self) -> Of { in succ()
348 let Of(of) = *self; in succ() localVariable
353 pub fn pred(&self) -> Of { in pred()
354 let Of(of) = *self; in pred() localVariable
359 impl fmt::Debug for Of { implementation
361 let Of(of) = *self; in fmt() localVariable
464 pub fn to_of(&self) -> Of { in to_of()