Lines Matching refs:Method
473 pub struct Method(u16); struct
476 pub const METHOD_BINDING: Method = Method(0x001);
477 pub const METHOD_ALLOCATE: Method = Method(0x003);
478 pub const METHOD_REFRESH: Method = Method(0x004);
479 pub const METHOD_SEND: Method = Method(0x006);
480 pub const METHOD_DATA: Method = Method(0x007);
481 pub const METHOD_CREATE_PERMISSION: Method = Method(0x008);
482 pub const METHOD_CHANNEL_BIND: Method = Method(0x009);
485 pub const METHOD_CONNECT: Method = Method(0x000a);
486 pub const METHOD_CONNECTION_BIND: Method = Method(0x000b);
487 pub const METHOD_CONNECTION_ATTEMPT: Method = Method(0x000c);
489 impl fmt::Display for Method { implementation
516 pub method: Method, // e.g. binding
569 pub fn new(method: Method, class: MessageClass) -> Self { in new() argument
621 self.method = Method(m); in read_value()