Lines Matching refs:f
88 fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> { in fmt()
89 writeln!(f, "Issuer: {}", self.issuer)?; in fmt()
90 writeln!(f, "Subject: {}", self.subject)?; in fmt()
91 writeln!(f, "Mode: {:?}", self.mode)?; in fmt()
93 writeln!(f, "Code Desc: {}", hex::encode(code_desc))?; in fmt()
95 writeln!(f, "Code Hash: {}", hex::encode(&self.code_hash))?; in fmt()
97 writeln!(f, "Config Hash: {}", hex::encode(config_hash))?; in fmt()
100 writeln!(f, "Authority Desc: {}", hex::encode(authority_desc))?; in fmt()
102 writeln!(f, "Authority Hash: {}", hex::encode(&self.authority_hash))?; in fmt()
103 writeln!(f, "Config Desc {{")?; in fmt()
104 write!(f, "{}", &self.config_desc)?; in fmt()
105 writeln!(f, "}}")?; in fmt()
111 fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> { in fmt()
112 let mut debug = f.debug_struct("Payload"); in fmt()
265 fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> { in fmt()
267 ComponentVersion::Integer(n) => write!(f, "{n}")?, in fmt()
268 ComponentVersion::String(s) => write!(f, "{s}")?, in fmt()
318 fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> { in fmt()
320 writeln!(f, "Component Name: {}", component_name)?; in fmt()
323 writeln!(f, "Component Version: {}", component_version)?; in fmt()
326 writeln!(f, "Resettable")?; in fmt()
329 writeln!(f, "Security Version: {}", security_version)?; in fmt()
332 writeln!(f, "RKP VM Marker")?; in fmt()
335 writeln!(f, "{key}: {value}")?; in fmt()