{"id":8891,"date":"2022-08-02T19:00:00","date_gmt":"2022-08-02T10:00:00","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=8891"},"modified":"2022-07-31T11:39:46","modified_gmt":"2022-07-31T02:39:46","slug":"rust%e5%8b%89%e5%bc%b7%e4%b8%ad%e3%80%817-31%e3%81%ae%e7%a9%8d%e3%81%bf%e4%b8%8a%e3%81%92","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=8891","title":{"rendered":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052"},"content":{"rendered":"\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f wp-block-embed-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"QfVdaXvhkU\"><a href=\"https:\/\/taki-lab.site\/bocci\/?p=8831\">RUST\u52c9\u5f37\u4e2d\u30017\/24\u306e\u7a4d\u307f\u4e0a\u3052<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;RUST\u52c9\u5f37\u4e2d\u30017\/24\u306e\u7a4d\u307f\u4e0a\u3052&#8221; &#8212; \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" src=\"https:\/\/taki-lab.site\/bocci\/?p=8831&#038;embed=true#?secret=PyxhyXZJE5#?secret=QfVdaXvhkU\" data-secret=\"QfVdaXvhkU\" width=\"474\" height=\"267\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u8868\u793a\u3059\u308b\u30c7\u30fc\u30bf\u306f\u5c06\u6765\u7684\u306b\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f7f\u7528\u3059\u308b\u306e\u3067\u3059\u304c\u3001<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u305d\u308c\u306f\u307e\u305f\u6b21\u56de\u306e\u8a71\u306a\u306e\u3067\u3001\u4eca\u56de\u306f\u30c0\u30df\u30fc\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;package]\nname = \"todo\"\nversion = \"0.1.0\"\nedition = \"2021\"\n\n# See more keys and their definitions at https:\/\/doc.rust-lang.org\/cargo\/reference\/manifest.html\n\n&#91;dependencies]\nactix-web = { version = \"4.1\" }\nactix-rt = { version = \"2.7\" }\nthiserror = { version = \"1.0\" }\naskama = { version = \"0.11\" }\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n\n&lt;head&gt;\n    &lt;meta charset=\"utf-8\" \/&gt;\n    &lt;title&gt;Todo App&lt;\/Applet&gt;&lt;\/title&gt;\n&lt;\/head&gt;\n\n&lt;body&gt;\n    &lt;div&gt;\n        {% for entry in entries %}\n        &lt;div&gt;\n            &lt;div&gt;id: {{ entry.id }}, text: {{ entry.text }}&lt;\/div&gt;\n            &lt;form action=\"\/delete\" method=\"post\"&gt;\n                &lt;input type=\"hidden\" name=\"\"id\" value=\"{{ entry.id }}\"&gt;\n                &lt;button&gt;delete&lt;\/button&gt;\n            &lt;\/form&gt;\n        &lt;\/div&gt;\n        {% endfor %}\n    &lt;\/div&gt;\n\n    &lt;form action=\"\/add\" method=\"post\"&gt;\n        &lt;div&gt;\n            &lt;input name=\"text\"&gt;\n        &lt;\/div&gt;\n        &lt;div&gt;\n            &lt;button&gt;add&lt;\/button&gt;\n        &lt;\/div&gt;\n    &lt;\/form&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>use actix_web::{get, App, HttpResponse, HttpServer, ResponseError};\nuse thiserror::Error;\nuse askama::Template;\n\nstruct TodoEntry {\n    id: u32,\n    text: String,\n}\n\n#&#91;derive(Template)]\n#&#91;template(path = \"index.html\")]\nstruct IndexTemplate {\n    entries: Vec&lt;TodoEntry&gt;,\n}\n\n#&#91;derive(Error, Debug)]\nenum MyError {\n    #&#91;error(\"Failed to render HTML\")]\n    AskamaError(#&#91;from] askama::Error),\n}\n\nimpl ResponseError for MyError {}\n\n#&#91;get(\"\/\")]\nasync fn index() -&gt; Result&lt;HttpResponse, MyError&gt; {\n    let mut entries = Vec::new();\n    entries.push(TodoEntry {\n        id: 1,\n        text: \"First entry\".to_string(),\n    });\n    entries.push(TodoEntry {\n        id: 2,\n        text: \"Second entry\".to_string(),\n    });\n\n    let html = IndexTemplate { entries };\n    let response_body = html.render()?;\n    Ok(HttpResponse::Ok()\n        .content_type(\"text\/html\")\n        .body(response_body))\n}\n\n\n\n#&#91;actix_rt::main]\nasync fn main() -&gt; Result&lt;(), actix_web::Error&gt; {\n    HttpServer::new(move || App::new().service(index))\n        .bind(\"0.0.0.0:8080\")?\n        .run()\n        .await?;\n    Ok(())\n}\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"467\" height=\"326\" data-attachment-id=\"8894\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=8894\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?fit=467%2C326&amp;ssl=1\" data-orig-size=\"467,326\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot-2022-07-31-100956\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?fit=467%2C326&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?resize=467%2C326&#038;ssl=1\" alt=\"\" class=\"wp-image-8894\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?w=467&amp;ssl=1 467w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?resize=300%2C209&amp;ssl=1 300w\" sizes=\"auto, (max-width: 467px) 100vw, 467px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u8868\u793a\u3059\u308b\u30c7\u30fc\u30bf\u306f\u5c06\u6765\u7684\u306b\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f7f\u7528\u3059\u308b\u306e\u3067\u3059\u304c\u3001 \u305d\u308c\u306f\u307e\u305f\u6b21\u56de\u306e\u8a71\u306a\u306e\u3067\u3001\u4eca\u56de\u306f\u30c0\u30df\u30fc\u30c7\u30fc\u30bf\u3092\u4f7f &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=8891\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[2542,3],"tags":[],"class_list":["post-8891","post","type-post","status-publish","format-standard","hentry","category-rust","category-3"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"taki\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/taki-lab.site\/bocci\/?p=8891\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta property=\"og:description\" content=\"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/taki-lab.site\/bocci\/?p=8891\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-08-02T10:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-07-31T02:39:46+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@n2_taki\" \/>\n\t\t<meta name=\"twitter:title\" content=\"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" \/>\n\t\t<meta name=\"twitter:description\" content=\"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@n2_taki\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#article\",\"name\":\"RUST\\u52c9\\u5f37\\u4e2d\\u30017\\\/31\\u306e\\u7a4d\\u307f\\u4e0a\\u3052 | \\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"headline\":\"RUST\\u52c9\\u5f37\\u4e2d\\u30017\\\/31\\u306e\\u7a4d\\u307f\\u4e0a\\u3052\",\"author\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/taki-lab.site\\\/bocci\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Screenshot-2022-07-31-100956.png?fit=467%2C326&ssl=1\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891\\\/#articleImage\",\"width\":467,\"height\":326},\"datePublished\":\"2022-08-02T19:00:00+09:00\",\"dateModified\":\"2022-07-31T11:39:46+09:00\",\"inLanguage\":\"ja\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#webpage\"},\"articleSection\":\"Rust, \\u6280\\u8853\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/taki-lab.site\\\/bocci\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"name\":\"\\u6280\\u8853\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"position\":2,\"name\":\"\\u6280\\u8853\",\"item\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=2542#listItem\",\"name\":\"Rust\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=2542#listItem\",\"position\":3,\"name\":\"Rust\",\"item\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=2542\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#listItem\",\"name\":\"RUST\\u52c9\\u5f37\\u4e2d\\u30017\\\/31\\u306e\\u7a4d\\u307f\\u4e0a\\u3052\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=3#listItem\",\"name\":\"\\u6280\\u8853\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#listItem\",\"position\":4,\"name\":\"RUST\\u52c9\\u5f37\\u4e2d\\u30017\\\/31\\u306e\\u7a4d\\u307f\\u4e0a\\u3052\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?cat=2542#listItem\",\"name\":\"Rust\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\",\"name\":\"taki\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"taki\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1\",\"name\":\"taki\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"taki\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#webpage\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891\",\"name\":\"RUST\\u52c9\\u5f37\\u4e2d\\u30017\\\/31\\u306e\\u7a4d\\u307f\\u4e0a\\u3052 | \\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"description\":\"askama\\u30af\\u30ec\\u30fc\\u30c8\\u3092\\u4f7f\\u7528\\u3059\\u308b\\u3053\\u3068\\u306b\\u3088\\u308a\\u3001html\\u30c6\\u30f3\\u30d7\\u30ec\\u30fc\\u30c8\\u3092\\u4f7f\\u7528\\u3057\\u3066Web\\u30da\\u30fc\\u30b8\\u3092\\u4f5c\\u6210\\u3059\\u308b\\u3053\\u3068\\u304c\\u3067\\u304d\\u307e\\u3059\\u3002\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?p=8891#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/?author=1#author\"},\"datePublished\":\"2022-08-02T19:00:00+09:00\",\"dateModified\":\"2022-07-31T11:39:46+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#website\",\"url\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/\",\"name\":\"\\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"description\":\"\\u81ea\\u5206\\u3001\\u307c\\u3063\\u3061\\u3067\\u3059\\u304c\\u4f55\\u304b\\uff1f\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/taki-lab.site\\\/bocci\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002","canonical_url":"https:\/\/taki-lab.site\/bocci\/?p=8891","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#article","name":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","headline":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052","author":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"publisher":{"@id":"https:\/\/taki-lab.site\/bocci\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-31-100956.png?fit=467%2C326&ssl=1","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891\/#articleImage","width":467,"height":326},"datePublished":"2022-08-02T19:00:00+09:00","dateModified":"2022-07-31T11:39:46+09:00","inLanguage":"ja","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#webpage"},"isPartOf":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#webpage"},"articleSection":"Rust, \u6280\u8853"},{"@type":"BreadcrumbList","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci#listItem","position":1,"name":"Home","item":"https:\/\/taki-lab.site\/bocci","nextItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","name":"\u6280\u8853"}},{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","position":2,"name":"\u6280\u8853","item":"https:\/\/taki-lab.site\/bocci\/?cat=3","nextItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=2542#listItem","name":"Rust"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=2542#listItem","position":3,"name":"Rust","item":"https:\/\/taki-lab.site\/bocci\/?cat=2542","nextItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#listItem","name":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=3#listItem","name":"\u6280\u8853"}},{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#listItem","position":4,"name":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052","previousItem":{"@type":"ListItem","@id":"https:\/\/taki-lab.site\/bocci\/?cat=2542#listItem","name":"Rust"}}]},{"@type":"Person","@id":"https:\/\/taki-lab.site\/bocci\/#person","name":"taki","image":{"@type":"ImageObject","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g","width":96,"height":96,"caption":"taki"}},{"@type":"Person","@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author","url":"https:\/\/taki-lab.site\/bocci\/?author=1","name":"taki","image":{"@type":"ImageObject","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8f8cdedc3ca17123f9055a947821458b0e1a9b070e54d24591e88600598d6659?s=96&d=mm&r=g","width":96,"height":96,"caption":"taki"}},{"@type":"WebPage","@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#webpage","url":"https:\/\/taki-lab.site\/bocci\/?p=8891","name":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002","inLanguage":"ja","isPartOf":{"@id":"https:\/\/taki-lab.site\/bocci\/#website"},"breadcrumb":{"@id":"https:\/\/taki-lab.site\/bocci\/?p=8891#breadcrumblist"},"author":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"creator":{"@id":"https:\/\/taki-lab.site\/bocci\/?author=1#author"},"datePublished":"2022-08-02T19:00:00+09:00","dateModified":"2022-07-31T11:39:46+09:00"},{"@type":"WebSite","@id":"https:\/\/taki-lab.site\/bocci\/#website","url":"https:\/\/taki-lab.site\/bocci\/","name":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","description":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","inLanguage":"ja","publisher":{"@id":"https:\/\/taki-lab.site\/bocci\/#person"}}]},"og:locale":"ja_JP","og:site_name":"\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","og:type":"article","og:title":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","og:description":"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002","og:url":"https:\/\/taki-lab.site\/bocci\/?p=8891","article:published_time":"2022-08-02T10:00:00+00:00","article:modified_time":"2022-07-31T02:39:46+00:00","twitter:card":"summary","twitter:site":"@n2_taki","twitter:title":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052 | \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f","twitter:description":"askama\u30af\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u3001html\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4f7f\u7528\u3057\u3066Web\u30da\u30fc\u30b8\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002","twitter:creator":"@n2_taki"},"aioseo_meta_data":{"post_id":"8891","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"},\"blockGraphs\":[]}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-07-31 01:18:37","updated":"2025-06-08 10:03:34","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taki-lab.site\/bocci\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taki-lab.site\/bocci\/?cat=3\" title=\"\u6280\u8853\">\u6280\u8853<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taki-lab.site\/bocci\/?cat=2542\" title=\"Rust\">Rust<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/taki-lab.site\/bocci"},{"label":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},{"label":"Rust","link":"https:\/\/taki-lab.site\/bocci\/?cat=2542"},{"label":"RUST\u52c9\u5f37\u4e2d\u30017\/31\u306e\u7a4d\u307f\u4e0a\u3052","link":"https:\/\/taki-lab.site\/bocci\/?p=8891"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-2jp","jetpack-related-posts":[{"id":8935,"url":"https:\/\/taki-lab.site\/bocci\/?p=8935","url_meta":{"origin":8891,"position":0},"title":"RUST\u52c9\u5f37\u4e2d\u30018\/7\u306e\u7a4d\u307f\u4e0a\u3052","author":"taki","date":"2022\u5e748\u67089\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=8891 \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u2026","rel":"","context":"\u51fa\u6765\u4e8b","block_context":{"text":"\u51fa\u6765\u4e8b","link":"https:\/\/taki-lab.site\/bocci\/?cat=9"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":9035,"url":"https:\/\/taki-lab.site\/bocci\/?p=9035","url_meta":{"origin":8891,"position":1},"title":"RUST\u52c9\u5f37\u4e2d\u30018\/21\u306e\u7a4d\u307f\u4e0a\u3052","author":"taki","date":"2022\u5e748\u670822\u65e5","format":false,"excerpt":"\u524d\u56de\u306e\u7d9a\u304d https:\/\/taki-lab.site\/bocci\/?p=8971 \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u8ffd\u2026","rel":"","context":"Rust","block_context":{"text":"Rust","link":"https:\/\/taki-lab.site\/bocci\/?cat=2542"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-21-081854.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-21-081854.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-21-081854.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":8831,"url":"https:\/\/taki-lab.site\/bocci\/?p=8831","url_meta":{"origin":8891,"position":2},"title":"RUST\u52c9\u5f37\u4e2d\u30017\/24\u306e\u7a4d\u307f\u4e0a\u3052","author":"taki","date":"2022\u5e747\u670826\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=8785 \u30a8\u30e9\u30fc\u306e\u30cf\u30f3\u30c9\u30ea\u30f3\u30b0\u5b9a\u7fa9\u3092\u8ffd\u2026","rel":"","context":"Rust","block_context":{"text":"Rust","link":"https:\/\/taki-lab.site\/bocci\/?cat=2542"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":8785,"url":"https:\/\/taki-lab.site\/bocci\/?p=8785","url_meta":{"origin":8891,"position":3},"title":"RUST\u52c9\u5f37\u4e2d\u30017\/17\u306e\u7a4d\u307f\u4e0a\u3052","author":"taki","date":"2022\u5e747\u670821\u65e5","format":false,"excerpt":"\u4eca\u9031\u304b\u3089Web\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3092\u4f7f\u7528\u3057\u305f\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u306b\u306a\u308a\u307e\u3059\u3002 \u307e\u305a\u306f\u304a\u99b4\u67d3\u307f\u306eHello wor\u2026","rel":"","context":"Rust","block_context":{"text":"Rust","link":"https:\/\/taki-lab.site\/bocci\/?cat=2542"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-17-131513.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-17-131513.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/07\/Screenshot-2022-07-17-131513.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":8971,"url":"https:\/\/taki-lab.site\/bocci\/?p=8971","url_meta":{"origin":8891,"position":4},"title":"RUST\u52c9\u5f37\u4e2d\u30018\/13\u306e\u7a4d\u307f\u4e0a\u3052","author":"taki","date":"2022\u5e748\u670814\u65e5","format":false,"excerpt":"\u524d\u56de\u306e\u7d9a\u304d\u3002 https:\/\/taki-lab.site\/bocci\/?p=8891 index\u306b\u30c0\u2026","rel":"","context":"Rust","block_context":{"text":"Rust","link":"https:\/\/taki-lab.site\/bocci\/?cat=2542"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-13-104452.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":750,"url":"https:\/\/taki-lab.site\/bocci\/?p=750","url_meta":{"origin":8891,"position":5},"title":"\u3010\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306e\u57fa\u672c\u3011\u3010\u7b2c\uff11\u56de\u3011\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u8a71","author":"taki","date":"2018\u5e7411\u670828\u65e5","format":false,"excerpt":"\u4e00\u5e74\u3050\u3089\u3044\u524d\u306b\u793e\u5185\u3067\u767a\u8868\u3057\u305f\u5185\u5bb9\u3002\u3053\u308c\u304c\u601d\u3063\u305f\u4ee5\u4e0a\u306b\u597d\u8a55\u3060\u3063\u305f\u306e\u3067\u3001\u516c\u958b\u3057\u307e\u3059\u3002\u4e3b\u306b\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u306b\u3064\u2026","rel":"","context":"\u6280\u8853","block_context":{"text":"\u6280\u8853","link":"https:\/\/taki-lab.site\/bocci\/?cat=3"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2018\/11\/dbdb6e5069aeb8e72ac56bd45ea773d8.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2018\/11\/dbdb6e5069aeb8e72ac56bd45ea773d8.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2018\/11\/dbdb6e5069aeb8e72ac56bd45ea773d8.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/8891","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8891"}],"version-history":[{"count":2,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/8891\/revisions"}],"predecessor-version":[{"id":8896,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/8891\/revisions\/8896"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8891"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=8891"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=8891"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}